コード例 #1
0
 /**
  * select_builder()
  *
  * Set "text" and "values" attributes based on instance's 'build' attribute
  *
  * @param array $options The options array from this instance (destructive)
  *
  * @return void
  **/
 private function select_builder(&$options)
 {
     $options['text'] = NORM::all($options['build'][0], $options['build'][1]);
     if (isset($options['build'][2])) {
         $options['values'] = NORM::all($options['build'][0], $options['build'][2]);
     }
 }
コード例 #2
0
ファイル: helpers.php プロジェクト: TheOddLinguist/toolbox
 public function __construct()
 {
     parent::__construct(array('table_name' => 'test_author'));
     $this->has_many('books');
 }
コード例 #3
0
ファイル: class.project.php プロジェクト: nepageeks/champion
 public function __construct()
 {
     parent::__construct();
     $this->has_many('photos', array('order_by' => 'position'));
 }
コード例 #4
0
 public function __construct()
 {
     parent::__construct();
 }
コード例 #5
0
 public function __construct()
 {
     parent::__construct();
     $this->belongs_to('category', array('class' => 'CmsCategory'));
 }
コード例 #6
0
ファイル: class.contact.php プロジェクト: nepageeks/champion
 function __construct()
 {
     parent::__construct(array('table_name' => 'contact'));
 }
コード例 #7
0
ファイル: class.user.php プロジェクト: TheOddLinguist/toolbox
 public function __construct()
 {
     parent::__construct();
     $this->config->ignore[] = 'role';
 }
コード例 #8
0
ファイル: class.photo.php プロジェクト: nepageeks/champion
 public function __construct()
 {
     parent::__construct();
     $this->belongs_to('project');
 }
コード例 #9
0
ファイル: helpers.php プロジェクト: TheOddLinguist/toolbox
 public function __construct()
 {
     parent::__construct(array('table_name' => 'test_norm_account'));
     $this->belongs_to('author');
 }