HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
AuthChildForm.php
Go to the documentation of this file.
1 <?php
10 class AuthChildForm extends CFormModel
11 {
12  public $itemname;
13 
17  public function rules()
18  {
19  return array(
20  array('itemname', 'safe'),
21  );
22  }
23 
27  public function attributeLabels()
28  {
29  return array(
30  'itemname' => Rights::t('core', 'Authorization item'),
31  );
32  }
33 }