当前位置: 首页>>代码示例>>PHP>>正文


PHP User_Model::__construct方法代码示例

本文整理汇总了PHP中User_Model::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP User_Model::__construct方法的具体用法?PHP User_Model::__construct怎么用?PHP User_Model::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在User_Model的用法示例。


在下文中一共展示了User_Model::__construct方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($action, $title, $id = FALSE)
 {
     // Load the user
     parent::__construct($id);
     // Create the form
     $this->form = new Forge($action, $title);
     $this->form->input('username')->label(TRUE)->rules('required|length[5,32]')->value($this->object->username);
     $this->form->input('email')->label(TRUE)->rules('required|length[5,127]|valid_email')->value($this->object->email);
     $this->form->password('password')->label(TRUE)->rules('length[5,64]');
     $this->form->password('confirm')->label(TRUE)->matches($this->form->password);
     // Make sure that the username does not already exist
     $this->form->username->callback(array($this, 'is_existing_user'));
     if ($this->object->id == 0) {
         // Password fields are required for new users
         $this->form->password->rules('+required');
     }
     // // Find all roles
     // $roles = new Role_Model;
     // $roles = $roles->find(ALL);
     //
     // $options = array();
     // foreach ($roles as $role)
     // {
     // 	// Add each role to the options
     // 	$options[$role->name] = isset($this->roles[$role->id]);
     // }
     //
     // // Create a checklist of roles
     // $this->form->checklist('roles')->options($options)->label(TRUE);
     // Add the save button
     $this->form->submit('Save');
 }
开发者ID:TODDMAN,项目名称:gallery3-vendor,代码行数:32,代码来源:user_edit.php

示例2:

 function __construct($data = null)
 {
     parent::__construct($data);
     $this->table_name = 'guides';
     $this->primary_key = 'guides.guideId';
     if ($data != null) {
         $this->id = $data->guideId;
         $this->userId = $data->userId;
     }
 }
开发者ID:SerberthoWeb,项目名称:TouriExpert,代码行数:10,代码来源:Guide_Model.php

示例3:

 function __construct()
 {
     // Call the Model constructor
     parent::__construct();
     $this->load->model($this->models, '', TRUE);
 }
开发者ID:pkdism,项目名称:ISM-MIS,代码行数:6,代码来源:employee_model.php

示例4: __construct

 public function __construct()
 {
     // load database library into $this->db (can be omitted if not required)
     parent::__construct();
 }
开发者ID:scottasoutherland,项目名称:todo-list,代码行数:5,代码来源:uservalidation.php


注:本文中的User_Model::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。