• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Survey_Common_Action类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Survey_Common_Action的典型用法代码示例。如果您正苦于以下问题:PHP Survey_Common_Action类的具体用法?PHP Survey_Common_Action怎么用?PHP Survey_Common_Action使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了Survey_Common_Action类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'assessments', $aViewUrls = array(), $aData = array())
 {
     $this->getController()->_js_admin_includes(Yii::app()->getConfig('adminscripts') . 'assessments.js');
     $this->getController()->_js_admin_includes(Yii::app()->getConfig('generalscripts') . 'jquery/jquery.tablesorter.min.js');
     $this->getController()->_css_admin_includes(Yii::app()->getConfig('adminstyleurl') . "superfish.css");
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:rawaludin,项目名称:LimeSurvey,代码行数:14,代码来源:assessments.php


示例2: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'assessments', $aViewUrls = array(), $aData = array())
 {
     App()->getClientScript()->registerScriptFile(Yii::app()->getConfig('adminscripts') . 'assessments.js');
     App()->getClientScript()->registerPackage('jquery-tablesorter');
     App()->getClientScript()->registerPackage('jquery-superfish');
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:krsandesh,项目名称:LimeSurvey,代码行数:14,代码来源:assessments.php


示例3: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'participants', $aViewUrls = array(), $aData = array())
 {
     $aData['display']['menu_bars'] = false;
     foreach ((array) $aViewUrls as $sViewUrl) {
         $a_ViewUrls[] = $sViewUrl . '_view';
     }
     parent::_renderWrappedTemplate($sAction, $a_ViewUrls, $aData);
 }
开发者ID:pmaonline,项目名称:limesurvey-quickstart,代码行数:15,代码来源:participantsaction.php


示例4: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'participants', $aViewUrls = array(), $aData = array())
 {
     App()->getClientScript()->registerPackage('bootstrap-multiselect');
     $aData['display']['menu_bars'] = false;
     foreach ((array) $aViewUrls as $sViewUrl) {
         $a_ViewUrls[] = $sViewUrl . '_view';
     }
     parent::_renderWrappedTemplate($sAction, $a_ViewUrls, $aData);
 }
开发者ID:jdbaltazar,项目名称:survey-office,代码行数:16,代码来源:participantsaction.php


示例5: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'participants', $aViewUrls = array(), $aData = array())
 {
     App()->getClientScript()->registerPackage('bootstrap-multiselect');
     $aData['display']['menu_bars'] = false;
     // Add "_view" to urls
     array_walk($aViewUrls, function (&$url) {
         $url .= "_view";
     });
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:GuillaumeSmaha,项目名称:LimeSurvey,代码行数:17,代码来源:participantsaction.php


示例6: die

 function __construct($controller, $id)
 {
     parent::__construct($controller, $id);
     if (!Permission::model()->hasGlobalPermission('superadmin', 'read')) {
         die;
     }
     if (!in_array(Yii::app()->db->getDriverName(), array('mysql', 'mysqli')) || Yii::app()->getConfig('demoMode') == true) {
         die($this->getController()->lang->gT('This feature is only available for MySQL databases.'));
     }
 }
开发者ID:jdbaltazar,项目名称:survey-office,代码行数:10,代码来源:dumpdb.php


示例7: die

 function __construct($controller, $id)
 {
     parent::__construct($controller, $id);
     if (Yii::app()->session['USER_RIGHT_SUPERADMIN'] != 1) {
         die;
     }
     if (!in_array(Yii::app()->db->getDriverName(), array('mysql', 'mysqli')) || Yii::app()->getConfig('demoMode') == true) {
         die($this->getController()->lang->gT('This feature is only available for MySQL databases.'));
     }
 }
开发者ID:rawaludin,项目名称:LimeSurvey,代码行数:10,代码来源:dumpdb.php


示例8: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'saved', $aViewUrls = array(), $aData = array())
 {
     $aData['display']['menu_bars']['browse'] = gT('Browse responses');
     // browse is independent of the above
     $aData['surveyid'] = $iSurveyId = $aData['iSurveyId'];
     $surveyinfo = Survey::model()->findByPk($iSurveyId)->surveyinfo;
     $aData["surveyinfo"] = $surveyinfo;
     $aData['title_bar']['title'] = gT('Browse responses') . ': ' . $surveyinfo['surveyls_title'];
     $aData['menu']['close'] = true;
     $aData['menu']['edition'] = false;
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:mfavetti,项目名称:LimeSurvey,代码行数:19,代码来源:saved.php


示例9: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'assessments', $aViewUrls = array(), $aData = array())
 {
     $aData['sidebar']['state'] = "close";
     $iSurveyID = $aData['surveyid'];
     $surveyinfo = Survey::model()->findByPk($iSurveyID)->surveyinfo;
     $aData['title_bar']['title'] = $surveyinfo['surveyls_title'] . "(" . gT("ID") . ":" . $iSurveyID . ")";
     $aData['surveybar']['savebutton']['form'] = true;
     $aData['surveybar']['closebutton']['url'] = 'admin/survey/sa/view/surveyid/' . $iSurveyID;
     $aData['gid'] = null;
     App()->getClientScript()->registerScriptFile(Yii::app()->getConfig('adminscripts') . 'assessments.js');
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:jgianpiere,项目名称:lime-survey,代码行数:19,代码来源:assessments.php


示例10: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'assessments', $aViewUrls = array(), $aData = array())
 {
     $aData['sidemenu']['state'] = false;
     $iSurveyID = $aData['surveyid'];
     $surveyinfo = Survey::model()->findByPk($iSurveyID)->surveyinfo;
     $aData['surveybar']['closebutton']['url'] = 'admin/survey/sa/view/surveyid/' . $iSurveyID;
     // Close button
     $aData['title_bar']['title'] = $surveyinfo['surveyls_title'] . "(" . gT("ID") . ":" . $iSurveyID . ")";
     $aData['surveybar']['savebutton']['form'] = TRUE;
     $aData['gid'] = null;
     App()->getClientScript()->registerScriptFile(App()->getAssetManager()->publish(ADMIN_SCRIPT_PATH . 'assessments.js'));
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:joaocc,项目名称:LimeSurvey--LimeSurvey,代码行数:20,代码来源:assessments.php


示例11: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'participants', $aViewUrls = array(), $aData = array())
 {
     App()->getClientScript()->registerPackage('bootstrap-multiselect');
     $aData['display']['menu_bars'] = false;
     // Add "_view" to urls
     if (is_array($aViewUrls)) {
         array_walk($aViewUrls, function (&$url) {
             $url .= "_view";
         });
     } elseif (is_string($aViewUrls)) {
         $aViewUrls .= "_view";
     } else {
         // Complete madness
         throw new \InvalidArgumentException("aViewUrls must be either string or array");
     }
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:sickpig,项目名称:LimeSurvey,代码行数:24,代码来源:participantsaction.php


示例12: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'region/country', $aViewUrls = array(), $aData = array())
 {
     $aData['display']['menu_bars']['country'] = true;
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:jdbaltazar,项目名称:survey-office,代码行数:12,代码来源:countryaction.php


示例13: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'export', $aViewUrls = array(), $aData = array())
 {
     $this->getController()->_css_admin_includes(Yii::app()->getConfig('adminstyleurl') . "superfish.css");
     $aData['display']['menu_bars']['gid_action'] = 'exportstructureGroup';
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:ryu1inaba,项目名称:LimeSurvey,代码行数:13,代码来源:export.php


示例14: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'authentication', $aViewUrls = array(), $aData = array())
 {
     App()->getClientScript()->registerPackage('panels-animation');
     $aData['display']['menu_bars'] = false;
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:jgianpiere,项目名称:lime-survey,代码行数:13,代码来源:authentication.php


示例15: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'token', $aViewUrls = array(), $aData = array())
 {
     $aData['imageurl'] = Yii::app()->getConfig('adminimageurl');
     $aData['display']['menu_bars'] = false;
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:josetorerobueno,项目名称:test_repo,代码行数:13,代码来源:tokens.php


示例16: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'survey', $aViewUrls = array(), $aData = array())
 {
     App()->getClientScript()->registerPackage('jquery-superfish');
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:nicbon,项目名称:LimeSurvey,代码行数:12,代码来源:surveyadmin.php


示例17: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'labels', $aViewUrls = array(), $aData = array())
 {
     if (!isset($aData['display']['menu_bars']['labels']) || $aData['display']['menu_bars']['labels'] != false) {
         if (empty($aData['labelsets'])) {
             $aData['labelsets'] = getLabelSets();
         }
         if (empty($aData['lid'])) {
             $aData['lid'] = 0;
         }
         $aViewUrls = (array) $aViewUrls;
         array_unshift($aViewUrls, 'labelsetsbar_view');
     }
     $aData['display']['menu_bars'] = false;
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:wrenchpilot,项目名称:LimeSurvey,代码行数:22,代码来源:labels.php


示例18: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'quotas', $aViewUrls = array(), $aData = array())
 {
     App()->getClientScript()->registerScriptFile(App()->getAssetManager()->publish(ADMIN_SCRIPT_PATH . '/quotas.js'));
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:joaocc,项目名称:LimeSurvey--LimeSurvey,代码行数:12,代码来源:quotas.php


示例19: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'authentication', $aViewUrls = array(), $aData = array())
 {
     $aData['display']['menu_bars'] = false;
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:mfavetti,项目名称:LimeSurvey,代码行数:12,代码来源:authentication.php


示例20: _renderWrappedTemplate

 /**
  * Renders template(s) wrapped in header and footer
  *
  * @param string $sAction Current action, the folder to fetch views from
  * @param string|array $aViewUrls View url(s)
  * @param array $aData Data to be passed on. Optional.
  */
 protected function _renderWrappedTemplate($sAction = 'emailtemplates', $aViewUrls = array(), $aData = array())
 {
     App()->getClientScript()->registerScriptFile(Yii::app()->getConfig('adminscripts') . 'emailtemplates.js');
     $aData['display']['menu_bars']['surveysummary'] = 'editemailtemplates';
     parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
 }
开发者ID:rouben,项目名称:LimeSurvey,代码行数:13,代码来源:emailtemplates.php



注:本文中的Survey_Common_Action类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP SwatDB类代码示例发布时间:2022-05-23
下一篇:
PHP SurveyLanguageSetting类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap