stickyAttributes() public method

public stickyAttributes ( )
コード例 #1
0
ファイル: Generator.php プロジェクト: claudejanz/yii2-mygii
 public function stickyAttributes()
 {
     return array_merge(parent::stickyAttributes(), ['generateQuery']);
 }
コード例 #2
0
 /**
  * {@inheritdoc}
  */
 public function stickyAttributes()
 {
     return array_merge(parent::stickyAttributes(), ['baseNs']);
 }
コード例 #3
0
 /**
  * @inheritdoc
  */
 public function stickyAttributes()
 {
     return array_merge(parent::stickyAttributes(), ['relationClassName']);
 }
コード例 #4
0
ファイル: Generator.php プロジェクト: tolik505/bl
 /**
  * @inheritdoc
  */
 public function stickyAttributes()
 {
     return array_merge(parent::stickyAttributes(), ['createBaseModel']);
 }
コード例 #5
0
 /**
  * @inheritdoc
  */
 public function stickyAttributes()
 {
     return array_merge(parent::stickyAttributes(), ['queryNs', 'includeTimestampBehavior', 'createdColumnName', 'updatedColumnName']);
 }
コード例 #6
0
 /**
  * @inheritdoc
  */
 public function stickyAttributes()
 {
     return array_merge(parent::stickyAttributes(), ['tableName']);
 }
コード例 #7
0
ファイル: Generator.php プロジェクト: rafalsky/home-finance
 /**
  * @inheritdoc
  */
 public function stickyAttributes()
 {
     return array_merge(parent::stickyAttributes(), ['ns', 'db', 'baseClass', 'generateRelations', 'generateLabelsFromComments', 'queryNs', 'queryBaseClass']);
 }
コード例 #8
0
ファイル: Generator.php プロジェクト: ivan-chkv/yii2-gii-plus
 /**
  * @inheritdoc
  */
 public function stickyAttributes()
 {
     return array_merge(array_diff(parent::stickyAttributes(), ['queryNs']), ['includeFilter', 'excludeFilter']);
 }
コード例 #9
0
ファイル: Generator.php プロジェクト: netis-pl/yii2-crud
 /**
  * @inheritdoc
  */
 public function stickyAttributes()
 {
     return array_merge(parent::stickyAttributes(), ['singularModelClass', 'searchNs']);
 }
コード例 #10
0
ファイル: Generator.php プロジェクト: guillemc/yii2starter
 /**
  * @inheritdoc
  */
 public function stickyAttributes()
 {
     return array_merge(parent::stickyAttributes(), ['labelField', 'timestampFields']);
 }
コード例 #11
0
ファイル: Generator.php プロジェクト: webvimark/generators
 /**
  * @inheritdoc
  */
 public function stickyAttributes()
 {
     return array_merge(parent::stickyAttributes(), ['defaultLanguage', 'tPrefix']);
 }