mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
43e57d0117
* minor fix for payment notifications * styleci * Limit Self updating to self hosters only : * Fixes for designs * Minor fixes for self-update
30 lines
664 B
PHP
30 lines
664 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
/**
|
|
* Class ChecksEntityStatus
|
|
* @package App\Utils\Traits
|
|
*/
|
|
trait ChecksEntityStatus
|
|
{
|
|
public function entityIsDeleted($entity)
|
|
{
|
|
return $entity->is_deleted;
|
|
}
|
|
|
|
public function disallowUpdate()
|
|
{
|
|
return response()->json(['message'=>'Record is deleted and cannot be edited. Restore the record to enable editing'], 400);
|
|
}
|
|
}
|