本文整理汇总了PHP中Account::Account方法的典型用法代码示例。如果您正苦于以下问题:PHP Account::Account方法的具体用法?PHP Account::Account怎么用?PHP Account::Account使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Account
的用法示例。
在下文中一共展示了Account::Account方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ControlAccount
public function ControlAccount($codeIgniterDb = null)
{
$data = array('name' => '', 'email' => '', 'password' => '');
parent::Account($codeIgniterDb, $data);
$this->table = 'admins';
$this->key = 'email';
}
示例2: User
public function User($codeIgniterDb = null)
{
$data = array('UID' => '', 'name' => '', 'subject' => '', 'institution' => '', 'password' => '', 'accountActive' => '', 'type' => '', 'fbEmail' => '', 'fbProfilePic' => '');
parent::Account($codeIgniterDb, $data);
$this->table = 'users';
$this->key = 'UID';
}
示例3: Marker
function Marker($ciDB = null)
{
$data = array('name' => '', 'username' => '', 'email' => '', 'subject' => '', 'institution' => '', 'password' => '', 'status' => '', 'phdStatus' => '', 'studentNum' => '');
parent::Account($ciDB, $data);
$this->table = 'markers';
$this->key = 'email';
}
示例4: ImportAccount
function ImportAccount()
{
parent::Account();
}
示例5: AccountsListView
function AccountsListView()
{
parent::Account();
}