當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CActiveRecord::attributeLabels方法代碼示例

本文整理匯總了PHP中CActiveRecord::attributeLabels方法的典型用法代碼示例。如果您正苦於以下問題:PHP CActiveRecord::attributeLabels方法的具體用法?PHP CActiveRecord::attributeLabels怎麽用?PHP CActiveRecord::attributeLabels使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CActiveRecord的用法示例。


在下文中一共展示了CActiveRecord::attributeLabels方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getModelAttributes

 /**
  * @param CActiveRecord $model
  **/
 public function getModelAttributes($model)
 {
     $result = array();
     $attributes = $model->attributeLabels();
     //       UtilHelper::dump($attributes);
     foreach ($attributes as $key => $value) {
         $result[$value] = get_class($model) . '.findByPk.' . $key . '|pk=:id';
     }
     return $result;
 }
開發者ID:yunsite,項目名稱:my-advertise,代碼行數:13,代碼來源:Template.php

示例2: export

 /**
  * @static
  * @param CActiveRecord $model
  * @param array|string $columns can also passed from js ,if so you can use $_GET to retrive it
  *          array('id','name') | 'id,name' 或者帶別名 't.id,user.name....'
  * @param array $headers
  */
 public static function export(CActiveRecord $model, $columns = array(), $headers = array())
 {
     if (isset($_GET[self::$actionKey])) {
         require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'CSVExport.php';
         $provider = $model->search();
         if (!empty($columns)) {
             $criteria = $provider->getCriteria();
             $criteria->select = $columns;
         }
         $csv = new CSVExport($provider);
         if (!empty($headers)) {
             $csv->headers = $headers;
         }
         $csv->headers = $model->attributeLabels();
         $csv->exportFull = false;
         //default use pagination
         if (!empty(self::$options)) {
             foreach (self::$options as $key => $value) {
                 $csv->{$key} = $value;
             }
         }
         //  echo var_export($provider->getCriteria()->toArray(),true);
         $content = $csv->toCSV(null, "\t", '"');
         Yii::app()->getRequest()->sendFile(self::$fileName, $content, "text/csv", false);
         die;
         //  exit;
     }
     /*
             else{
                $actionKey  = self::$actionKey;
                 throw new CException("something wrog with your request,must contain the key '{$actionKey}' your get is: ".CJSON::encode($_GET) );
             }*/
 }
開發者ID:branJakJak,項目名稱:dienSiSystem,代碼行數:40,代碼來源:CsvExporter.php

示例3: attributeLabels

 /**
  * @return array customized attribute labels (name=>label)
  */
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), array('id' => 'ID', 'parent_id' => 'Родитель', 'title' => 'Название', 'description' => 'Описание', 'listorder' => 'Порядок в списке', 'is_locked' => 'Заблокирован?', 'isCat' => 'Категория?'));
 }
開發者ID:CrystReal,項目名稱:Site_frontend,代碼行數:7,代碼來源:Forum.php


注:本文中的CActiveRecord::attributeLabels方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。