当前位置: 首页>>代码示例>>PHP>>正文


PHP CActiveRecord::getSafeAttributeNames方法代码示例

本文整理汇总了PHP中CActiveRecord::getSafeAttributeNames方法的典型用法代码示例。如果您正苦于以下问题:PHP CActiveRecord::getSafeAttributeNames方法的具体用法?PHP CActiveRecord::getSafeAttributeNames怎么用?PHP CActiveRecord::getSafeAttributeNames使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CActiveRecord的用法示例。


在下文中一共展示了CActiveRecord::getSafeAttributeNames方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getSafeAttributeNames

 public function getSafeAttributeNames()
 {
     return array_merge(parent::getSafeAttributeNames(), $this->_safeAttributes);
 }
开发者ID:hit-shappens,项目名称:testapp,代码行数:4,代码来源:ActiveRecordExtendable.php

示例2: getSafeAttributeNames

 public function getSafeAttributeNames()
 {
     if (!$this->eavEnable) {
         return parent::getSafeAttributeNames();
     }
     return array_merge($this->getSafeEavAttributeNames(), parent::getSafeAttributeNames());
 }
开发者ID:kuzmina-mariya,项目名称:unizaro-spa,代码行数:7,代码来源:EavActiveRecord.php

示例3: getSafeAttributeNames

 /**
  * @inheritDoc
  */
 public function getSafeAttributeNames()
 {
     $scenarios = $this->scenarios();
     $scenario = $this->getScenario();
     if ($scenarios === null) {
         return parent::getSafeAttributeNames();
     } elseif (isset($scenarios[$scenario])) {
         return $scenarios[$scenario];
     } else {
         return array();
     }
 }
开发者ID:codemix,项目名称:restyii,代码行数:15,代码来源:ActiveRecord.php

示例4: getSafeAttributeNames

 /**
  * Mark all table columns as safe attributes by default.
  * @return array list of safe attributes (equal to table columns).
  * @todo do something with it, coz it's security fail
  */
 public function getSafeAttributeNames()
 {
     if ($this->setOnlySafeAttributes) {
         return parent::getSafeAttributeNames();
     } else {
         return array_keys($this->getMetaData()->columns);
     }
 }
开发者ID:ttaufikhdy,项目名称:demotwitterapi,代码行数:13,代码来源:SmartAR.php

示例5: getSafeAttributeNames

 public function getSafeAttributeNames()
 {
     return array_unique(array_merge(parent::getSafeAttributeNames(), $this->safeAttributes()));
 }
开发者ID:santhoshanand,项目名称:cranium-crm,代码行数:4,代码来源:Model.php


注:本文中的CActiveRecord::getSafeAttributeNames方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。