function AJXP_User($id, $storage = null)
 {
     parent::AbstractAjxpUser($id, $storage);
 }
示例#2
0
 /**
  * AJXP_User Constructor
  * @param $id String User login name.
  * @param $storage AbstractConfDriver User storage implementation.
  * @return AJXP_SqlUser
  */
 public function AJXP_SqlUser($id, $storage = null, $debugEnabled = false)
 {
     parent::AbstractAjxpUser($id, $storage);
     //$this->debugEnabled = true;
     $this->log('Instantiating User');
 }
示例#3
0
 /**
  * @param $id
  * @param serialConfDriver $storage
  */
 public function AJXP_SerialUser($id, $storage = null)
 {
     parent::AbstractAjxpUser($id, $storage);
     $this->registerForSave = array();
 }