예제 #1
0
 function actionSendEmail($id = '')
 {
     global $beanFiles, $beanList, $app_list_strings;
     foreach ($app_list_strings['aow_moduleList'] as $bean_name => $bean_dis) {
         if (isset($beanList[$bean_name]) && isset($beanFiles[$beanList[$bean_name]])) {
             require_once $beanFiles[$beanList[$bean_name]];
             $obj = new $beanList[$bean_name]();
             if ($obj instanceof Person || $obj instanceof Company) {
                 $this->emailableModules[] = $bean_name;
             }
         }
     }
     asort($this->emailableModules);
     parent::actionBase($id);
 }
예제 #2
0
 function actionCreateRecord($id = '')
 {
     parent::actionBase($id);
 }
예제 #3
0
 function actionSendEmail($id = '')
 {
     parent::actionBase($id);
 }
예제 #4
0
 function __construct($id = '')
 {
     parent::__construct($id);
 }
예제 #5
0
 function actionJSMPushNotification($id = '')
 {
     parent::actionBase($id);
 }