Ejemplo n.º 1
0
 function __construct()
 {
     parent::__construct();
     $this->setApplication(Gpf_Application::getInstance()->getCode());
     $date = new Gpf_DateTime();
     $this->setDateinserted($date->toDateTime());
 }
 public function __construct($type)
 {
     parent::__construct();
     $date = new Gpf_DateTime();
     $this->setDateInserted($date->toDateTime());
     $this->setType($type);
 }
Ejemplo n.º 3
0
 function __construct(){
     parent::__construct();
     $this->setAccountId(Gpf_Db_Account::DEFAULT_ACCOUNT_ID);
     $this->setDateInserted(Gpf_Common_DateUtils::now());
     $this->setChannel('');
     $this->setSplit(1);
     $this->setTier(1);
 }
Ejemplo n.º 4
0
 function __construct()
 {
     parent::__construct();
     $this->set(Gpf_Db_Table_MailAccounts::POP3_PORT, self::DEFAULT_POP3_PORT);
     $this->set(Gpf_Db_Table_MailAccounts::SMTP_PORT, self::DEFAULT_SMTP_PORT);
     $this->set(Gpf_Db_Table_MailAccounts::USE_SMTP, Gpf::NO);
     $this->set(Gpf_Db_Table_MailAccounts::SMTP_AUTH, Gpf::NO);
     $this->set(Gpf_Db_Table_MailAccounts::SMTP_SSL, Gpf::NO);
 }
Ejemplo n.º 5
0
 public function __construct(){
     parent::__construct();
 }
Ejemplo n.º 6
0
 public function __construct($index){
     $this->index = $index;
     parent::__construct();
 }
Ejemplo n.º 7
0
 public function __construct() {
     parent::__construct();
     $this->setRank(100);
 }
Ejemplo n.º 8
0
 public function __construct() {
     parent::__construct();
     $date = new Gpf_DateTime();
     $this->setDateCreated($date->toDateTime());
     $this->setStatus('U');
 }