コード例 #1
0
ファイル: Note.php プロジェクト: chinazan/zzcrm
 public function getEntity($id = null)
 {
     $entity = parent::getEntity($id);
     if (!empty($id)) {
         $entity->loadAttachments();
     }
     return $entity;
 }
コード例 #2
0
ファイル: User.php プロジェクト: chinazan/zzcrm
 public function getEntity($id = null)
 {
     if (isset($id) && $id == 'system') {
         throw new Forbidden();
     }
     $entity = parent::getEntity($id);
     if ($entity && $entity->get('isSuperAdmin') && !$this->getUser()->get('isSuperAdmin')) {
         throw new Forbidden();
     }
     return $entity;
 }
コード例 #3
0
ファイル: InboundEmail.php プロジェクト: chinazan/zzcrm
 public function getEntity($id = null)
 {
     $entity = parent::getEntity($id);
     return $entity;
 }