コード例 #1
0
 public function __construct(Meeting $model)
 {
     parent::__construct($model);
 }
コード例 #2
0
 /**
  * Gets non searchable attributes.
  * @return array
  */
 public static function getNonSearchableAttributes()
 {
     return array_merge(parent::getNonSearchableAttributes(), array('modelClassName', 'processOffset', 'serializedData', 'exportFileType', 'exportFileModel'));
 }
コード例 #3
0
ファイル: TasksSearchForm.php プロジェクト: youprofit/Zurmo
 public function __construct(Task $model)
 {
     parent::__construct($model);
 }
コード例 #4
0
 public function __construct(Costbook $model)
 {
     parent::__construct($model);
 }
コード例 #5
0
 public function __construct(Animal $model)
 {
     parent::__construct($model);
 }
コード例 #6
0
 public function __construct(Opportunity $model)
 {
     parent::__construct($model);
 }
コード例 #7
0
 public function __construct(Opportunity $model)
 {
     $this->setKanbanBoard(new KanbanBoard($model, 'stage'));
     parent::__construct($model);
 }
コード例 #8
0
 public function __construct(Agreement $model)
 {
     $this->setKanbanBoard(new KanbanBoard($model, 'Status'));
     parent::__construct($model);
 }
コード例 #9
0
 public function __construct(AgreementProduct $model)
 {
     parent::__construct($model);
 }
コード例 #10
0
 public function __construct(Contract $model)
 {
     $this->setKanbanBoard(new KanbanBoard($model, 'stage'));
     parent::__construct($model);
 }
コード例 #11
0
 public function __construct(Unitofmeasure $model)
 {
     parent::__construct($model);
 }
コード例 #12
0
 public function __construct(Category $model)
 {
     parent::__construct($model);
 }
コード例 #13
0
 public function __construct(DepartmentReference $model)
 {
     parent::__construct($model);
 }
コード例 #14
0
ファイル: NotesSearchForm.php プロジェクト: youprofit/Zurmo
 public function __construct(Note $model)
 {
     parent::__construct($model);
 }
コード例 #15
0
 public function getAttributesMappedToRealAttributesMetadata()
 {
     return array_merge(parent::getAttributesMappedToRealAttributesMetadata(), array('anyCity' => array(array('billingAddress', 'city'), array('shippingAddress', 'city')), 'anyStreet' => array(array('billingAddress', 'street1'), array('shippingAddress', 'street1')), 'anyState' => array(array('billingAddress', 'state'), array('shippingAddress', 'state')), 'anyPostalCode' => array(array('billingAddress', 'postalCode'), array('shippingAddress', 'postalCode')), 'anyCountry' => array(array('billingAddress', 'country'), array('shippingAddress', 'country')), 'anyEmail' => array(array('primaryEmail', 'emailAddress'), array('secondaryEmail', 'emailAddress')), 'anyInvalidEmail' => array(array('primaryEmail', 'isInvalid'), array('secondaryEmail', 'isInvalid')), 'anyOptOutEmail' => array(array('primaryEmail', 'optOut'), array('secondaryEmail', 'optOut'))));
 }
コード例 #16
0
 /**
  * @return array
  */
 public function getAttributesMappedToRealAttributesMetadata()
 {
     return array_merge(parent::getAttributesMappedToRealAttributesMetadata(), array('webFormName' => array(array('name'))));
 }
コード例 #17
0
 public function getAttributesMappedToRealAttributesMetadata()
 {
     return array_merge(parent::getAttributesMappedToRealAttributesMetadata(), array('uniqueIdentifier' => array(array('id'))));
 }