本文整理汇总了PHP中CCodeModel::attributeLabels方法的典型用法代码示例。如果您正苦于以下问题:PHP CCodeModel::attributeLabels方法的具体用法?PHP CCodeModel::attributeLabels怎么用?PHP CCodeModel::attributeLabels使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CCodeModel
的用法示例。
在下文中一共展示了CCodeModel::attributeLabels方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: attributeLabels
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array(
'baseClass'=>'Base Class',
'className'=>'Console Command Class Name',
'scriptPath'=>'Script Path',
));
}
示例2: attributeLabels
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array(
'baseClass'=>'Base Class',
'className'=>'Class Name of the Application',
'scriptPath'=>'Script Path',
));
}
示例3: attributeLabels
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('baseClass' => 'Base Class', 'className' => 'Action ID', 'scriptPath' => 'Script Path'));
}
示例4: attributeLabels
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('migrateName' => 'Migrate Class Name', 'code' => 'SQL', 'clearCache' => 'Flush cache', 'clearAssets' => 'Clear assets'));
}
示例5: attributeLabels
/**
* @return array
*/
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('modelPath' => 'Model Path', 'modelClass' => 'Model Class'));
}
示例6: attributeLabels
/**
* (non-PHPdoc)
* @see CCodeModel::attributeLabels()
*/
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('workflowPath' => 'Workflow Path', 'workflowName' => 'Workflow Name', 'yedfile_upload' => 'yEd Workflow File', 'enableI8N' => 'Enable Internationalisation'));
}
示例7: attributeLabels
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('moduleID' => 'Module ID'));
}
示例8: attributeLabels
/**
* Attribute labels
*
* @return array
*/
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('tableName' => 'Table Name', 'migrationPath' => 'Migration Path', 'modelClass' => 'Class Name', 'modelPath' => 'Model Path', 'baseClass' => 'Base Class', 'controllerClass' => 'Controller Name', 'baseControllerClass' => 'Base Controller Class'));
}
示例9: attributeLabels
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('migrateName' => 'Migrate Class Name', 'code' => 'SQL', 'alreadyAppliedCode' => 'Check if applied (if returns >= 1 records - mark as applied', 'clearCache' => 'Flush cache', 'clearAssets' => 'Clear assets'));
}
示例10: attributeLabels
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('tablePrefix' => 'Table Prefix', 'tableName' => 'Table Name', 'modelPath' => 'Model Path', 'modelClass' => 'Model Class', 'baseClass' => 'Base Class', 'buildRelations' => 'Build Relations'));
}
示例11: attributeLabels
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('modelPath' => 'Models Path', 'fixturePath' => 'Fixtures Path'));
}
示例12: attributeLabels
/**
* @inheritdoc
*/
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('modelPath' => 'Model Path', 'modelClass' => 'Model Class', 'useMixin' => 'Use @mixin tag for behaviors'));
}
示例13: attributeLabels
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('model' => 'Model Class', 'name' => 'Русское название модели', 'name_many_nominative' => 'Мн.ч. Именительный падеж', 'name_one_accusative' => 'Ед.ч. Винительный падеж', 'name_one_preposition' => 'Ед.ч. Предложный падеж', 'name_many_genitive' => 'Мн.ч. Родительный падеж', 'name_many_instrumentative' => 'Мн.ч. Творительный падеж', 'controller' => 'Controller ID', 'baseControllerClass' => 'Base Controller Class'));
}
示例14: attributeLabels
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('tablePrefix' => 'Table Prefix', 'tableName' => 'Table Name', 'modelPath' => 'Model Path', 'modelClass' => 'Model Class', 'baseClass' => 'Base Class', 'buildRelations' => 'Build Relations', 'commentsAsLabels' => 'Use Column Comments as Attribute Labels', 'connectionId' => 'Database Connection'));
}
示例15: attributeLabels
public function attributeLabels()
{
return array_merge(parent::attributeLabels(), array('className' => 'Class', 'baseClass' => 'extends', 'interfaceName' => 'implements', 'comment' => 'class-level DocBlock for your component', 'scriptPath' => 'Script Path', 'isAbstract' => 'The class is abstract.', 'codeBody' => 'Your codelines after the magic methods'));
}