コード例 #1
0
ファイル: Lead.php プロジェクト: redhattaccoss/Leadschat
 public function init()
 {
     parent::init();
     $this->_table = "leads";
 }
コード例 #2
0
ファイル: Request.php プロジェクト: redhattaccoss/Leadschat
 public function init()
 {
     parent::init();
     $this->_table = "chat_requests";
 }
コード例 #3
0
ファイル: Comment.php プロジェクト: kolbensky/rybolove
 /**
  * Initialize
  */
 public function init()
 {
     $this->defaultStatus = Comment::STATUS_WAITING;
     return parent::init();
 }
コード例 #4
0
ファイル: Owner.php プロジェクト: redhattaccoss/Leadschat
 public function init()
 {
     parent::init();
     $this->_table = "owners";
 }
コード例 #5
0
ファイル: Session.php プロジェクト: redhattaccoss/Leadschat
 public function init()
 {
     parent::init();
     $this->_table = "chat_sessions";
 }
コード例 #6
0
	/**
	 * Initialize
	 */
	public function init()
	{
		$this->defaultStatus = CommentArticle::STATUS_APPROVED;
		return parent::init();
	}
コード例 #7
0
ファイル: Follow.php プロジェクト: Aplay/Fastreview_site
	/**
	 * Initialize
	 */
	public function init()
	{
		$this->defaultStatus = Follow::STATUS_APPROVED;
		return parent::init();
	}