コード例 #1
0
 protected function _getConfig()
 {
     $ret = parent::_getConfig();
     $ret['form']['xtype'] = 'kwc.listwitheditbutton';
     $generators = Kwc_Abstract::getSetting($this->_class, 'generators');
     $cls = $generators['child']['component'];
     if (is_array($cls)) {
         $cls = current($cls);
     }
     $admin = Kwc_Admin::getInstance($cls);
     $ret['form']['componentConfigs'] = array();
     foreach ($admin->getExtConfig() as $k => $cfg) {
         $ret['form']['componentConfigs'][$cls . '-' . $k] = $cfg;
         $ret['form']['editComponents'][] = array('componentClass' => $cls, 'type' => $k);
     }
     $ret['form']['needsComponentPanel'] = true;
     return $ret;
 }
コード例 #2
0
 protected function _getConfig()
 {
     $ret = parent::_getConfig();
     $mailClass = Kwc_Abstract::getChildComponentClass($this->_class, 'mail');
     $mailContentClass = Kwc_Abstract::getChildComponentClass($mailClass, 'content');
     $cfg = Kwc_Admin::getInstance($mailContentClass)->getExtConfig();
     $configs = array();
     $editComponents = array();
     $mainType = null;
     foreach ($cfg as $key => $c) {
         $configs[$mailContentClass . '-' . $key] = $c;
         $editComponents[] = array('componentClass' => $mailContentClass, 'type' => $key);
         if (!$mainType) {
             $mainType = $key;
         }
     }
     $ret['form'] = array_merge($ret['form'], array('xtype' => 'kwc.newsletter.detail.tabpanel', 'tabs' => array('settings' => array('xtype' => 'kwf.autoform', 'controllerUrl' => $this->getControllerUrl(), 'title' => trlKwf('Settings')), 'mail' => array('xtype' => 'kwf.component', 'componentEditUrl' => '/admin/component/edit', 'mainComponentClass' => $mailContentClass, 'componentIdSuffix' => '_mail-content', 'componentConfigs' => $configs, 'mainEditComponents' => $editComponents, 'mainType' => $mainType, 'title' => trlKwf('Mail')), 'preview' => array('xtype' => 'kwc.newsletter.detail.preview', 'controllerUrl' => $this->getControllerUrl('Preview'), 'subscribersControllerUrl' => $this->getControllerUrl('Subscribers'), 'authedUserEmail' => Kwf_Registry::get('userModel')->getAuthedUser() ? Kwf_Registry::get('userModel')->getAuthedUser()->email : '', 'title' => trlKwf('Preview'), 'recipientSources' => $this->_getRecipientSources()), 'mailing' => array('xtype' => 'kwc.newsletter.recipients', 'title' => trlKwf('Mailing'), 'recipientsPanel' => array('title' => trlKwf('Add/Remove Subscriber to Queue'), 'controllerUrl' => $this->getControllerUrl('Recipients'), 'region' => 'center', 'xtype' => 'kwc.newsletter.recipients.grid'), 'recipientsQueuePanel' => array('title' => trlKwf('Queue'), 'controllerUrl' => $this->getControllerUrl('Mailing'), 'region' => 'east', 'width' => 500, 'xtype' => 'kwc.newsletter.recipients.queue'), 'mailingPanel' => array('title' => trlKwf('Mailing'), 'region' => 'south', 'controllerUrl' => $this->getControllerUrl('Mailing'), 'formControllerUrl' => $this->getControllerUrl('MailingForm'), 'xtype' => 'kwc.newsletter.startNewsletter')), 'statistics' => array('xtype' => 'kwf.autogrid', 'controllerUrl' => $this->getControllerUrl('Statistics'), 'title' => trlKwf('Statistics')))));
     return $ret;
 }
コード例 #3
0
 protected function _getConfig()
 {
     $ret = parent::_getConfig();
     $ret['form']['title'] = trlKwf('Background Settings');
     return $ret;
 }