PHP code example of satthi / entity-column-check
1. Go to this page and download the library: Download satthi/entity-column-check library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
satthi / entity-column-check example snippets
namespace App\Model\Entity;
use Cake\ORM\Entity;
use EntityColumnCheck\Model\Entity\EntityColumnCheckTrait;
class Topic extends Entity
{
// 追加項目
use EntityColumnCheckTrait;
protected $_accessible = [
'*' => true,
'id' => false
];
// 例外として設定するカラム
protected $entityColumnCheckAllowField = [
'file',
'img'
];
//&getメソッドをoverride
public function &get($property)
{
$value = parent::get($property);
$this->getEntityColumnCheck($property);
return $value;
}
}