Exemplo n.º 1
0
	/**
	 * Sets the labels for the new model attributes (class properties).
	 * #MethodTracker
	 * This method overrides {@link CrudCode::attributeLabels}, from version 1.1.7 (r3135). Changes:
	 * <ul>
	 * <li>Adds the labels for the new attributes in the code generation form: authtype; enable_ajax_validation.</li>
	 * </ul>
	 */
	public function attributeLabels() {
		return array_merge(parent::attributeLabels(), array(
			'authtype' => 'Authentication type',
			'enable_ajax_validation' => 'Enable ajax validation',
		));
	}
Exemplo n.º 2
0
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), array('authtype' => 'Authentication type'));
 }
Exemplo n.º 3
0
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), array('moduleID' => 'Module ID'));
 }
 /**
  * Returns form attribute labels
  * @return array
  */
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), array('validation' => 'Validation method'));
 }
Exemplo n.º 5
0
 /**
  * Sets the labels for the new model attributes (class properties).
  * #MethodTracker
  * This method overrides {@link CrudCode::attributeLabels}, from version 1.1.7 (r3135). Changes:
  * <ul>
  * <li>Adds the labels for the new attributes in the code generation form: authtype; validation.</li>
  * </ul>
  */
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), array('defaultAction' => 'Default Action', 'authtype' => 'Authentication type', 'validation' => 'Enable ajax validation'));
 }
Exemplo n.º 6
0
 /**
  * Sets the labels for the new model attributes (class properties).
  * Overrides CrudCode::attributeLabels.
  */
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), array('authtype' => 'Authentication type', 'enable_ajax_validateion' => 'Enable ajax Validation', 'path' => 'Result Crud js path'));
 }
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), array('generateComponents' => 'Generate Components and Widgets', 'generateLayouts' => 'Generate Layouts', 'layoutPrefix' => 'Layout Prefix', 'theme' => 'Theme'));
 }
Exemplo n.º 8
0
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), array('authtype' => 'Authentication type', 'persistent_sessions' => 'Persistent Sessions', 'enable_ajax_validateion' => 'Enable ajax Validation'));
 }
Exemplo n.º 9
0
 /**
  * Меняем labels переменных
  * @return array
  */
 public function attributeLabels()
 {
     return array_merge(parent::attributeLabels(), array('model' => 'Модель (название)', 'controller' => 'Контроллер (название)', 'baseControllerClass' => 'Базовый класс контроллера'));
 }