コード例 #1
0
ファイル: AccountsController.php プロジェクト: dsyman2/X2CRM
 public function actions()
 {
     return array_merge(parent::actions(), array('inlineEmail' => array('class' => 'InlineEmailAction'), 'accountsReport' => array('class' => 'AccountsReportAction'), 'exportAccountsReport' => array('class' => 'ExportAccountsReportAction'), 'accountsCampaign' => array('class' => 'AccountCampaignAction')));
 }
コード例 #2
0
ファイル: MarketingController.php プロジェクト: shayanyi/CRM
 public function actions()
 {
     return array_merge(parent::actions(), array('webleadForm' => array('class' => 'CreateWebFormAction'), 'inlineEmail' => array('class' => 'InlineEmailAction')));
 }
コード例 #3
0
 public function actions()
 {
     return array_merge(parent::actions(), array('webleadForm' => array('class' => 'CreateWebFormAction'), 'inlineEmail' => array('class' => 'application.modules.marketing.components.actions.TestEmailAction')));
 }
コード例 #4
0
 public function actions()
 {
     return array_merge(parent::actions(), array());
 }
コード例 #5
0
ファイル: ActionsController.php プロジェクト: dsyman2/X2CRM
 public function actions()
 {
     return array_merge(parent::actions(), array('captcha' => array('class' => 'CCaptchaAction', 'backColor' => 0xeeeeee), 'timerControl' => array('class' => 'application.modules.actions.components.TimerControlAction')));
 }
コード例 #6
0
ファイル: ContactsController.php プロジェクト: shuvro35/X2CRM
 /**
  * Return a list of external actions which need to be included.
  * @return array A merge of the parent class's imported actions in addition to the ones that 
  *  are specific to the Contacts controller
  */
 public function actions()
 {
     $actions = array_merge(parent::actions(), array('weblead' => array('class' => 'WebFormAction')));
     return $actions;
 }