예제 #1
0
 public function init()
 {
     parent::init();
     $this->_memberModel = new Member();
     $this->_contactModel = new Contact();
     $this->_sessionMember = new Zend_Session_Namespace('Member');
 }
예제 #2
0
 public function init()
 {
     parent::init();
     $this->_userModel = new BackofficeUser();
     $this->_memberModel = new Member();
     $this->_idMember = App_Utilities::getIdMember();
     $this->_rvCityModel = new ReferenceValue();
 }
예제 #3
0
 public function init()
 {
     parent::init();
     $this->view->t = $this->t;
     $this->_wallModel = new WallPost();
     $this->_idMember = App_Utilities::getIdMember();
     $this->_session = new Zend_Session_Namespace($this->_sessionNameSpace);
     $this->_tagSocialModel = new App_Tag_Manage_TagSocial();
     $this->_commentPostModel = new CommentWallPost();
 }
예제 #4
0
 public function init()
 {
     parent::init();
     $this->_iniConfig = new Zend_Config_Ini(APPLICATION_PATH . '/configs/application.ini', APPLICATION_ENV);
     $this->_userModel = new BackofficeUser();
     $this->_urlAliasModel = new UrlAlias();
     $this->_memberModel = new Member();
     $this->_authentification = new LoginAttempt();
     $this->_companyModel = new Company();
     $this->_companyMemberModel = new CompanyMember();
     $this->_backOfficeUserGroupModel = new BackofficeUserGroup();
     $this->_tagProfilModel = new App_Tag_Manage_TagProfil();
 }
예제 #5
0
 public function init()
 {
     parent::init();
     $this->_experienceModel = new Experience();
     $this->_studyModel = new Study();
     $this->_skillsModel = new MemberSkill();
     $this->_idMember = App_Utilities::getIdMember();
     $this->_memberModel = new Member();
     $this->_tagProfilModel = new App_Tag_Manage_TagProfil();
     $this->_companyModel = new Company();
     $this->_companyMemberModel = new CompanyMember();
     $this->_rvCompany = new ReferenceValue();
     $this->_rvSchool = new ReferenceValue();
     $this->_rvDomain = new ReferenceValue();
     $this->_rvSkill = new ReferenceValue();
 }
예제 #6
0
 public function init()
 {
     parent::init();
 }
 /**
  * Overrides Zend_Controller_Action::init()
  *
  * @access public
  * @return void
  */
 public function init()
 {
     // init the parent
     parent::init();
     $this->_addCommand(new App_Command_SendEmail());
 }