當前位置: 首頁>>代碼示例>>PHP>>正文


PHP modX::regClientStartupHTMLBlock方法代碼示例

本文整理匯總了PHP中modX::regClientStartupHTMLBlock方法的典型用法代碼示例。如果您正苦於以下問題:PHP modX::regClientStartupHTMLBlock方法的具體用法?PHP modX::regClientStartupHTMLBlock怎麽用?PHP modX::regClientStartupHTMLBlock使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在modX的用法示例。


在下文中一共展示了modX::regClientStartupHTMLBlock方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: includeScriptAssets

 /**
  * Render supporting javascript to try and help it work with MIGX etc
  */
 public function includeScriptAssets()
 {
     $vers = $this->modx->getVersionData();
     if ($vers['major_version'] >= 3) {
         $this->modx->regClientCSS($this->options['assetsUrl'] . 'mgr/css/imageplus.css');
     } else {
         $this->modx->regClientCSS($this->options['assetsUrl'] . 'mgr/css/imageplus-22.css');
     }
     $this->modx->regClientCSS($this->options['assetsUrl'] . 'mgr/css/jquery/jquery.jcrop.min.css');
     $this->modx->regClientStartupScript($this->options['assetsUrl'] . 'mgr/js/imageplus.js');
     $this->modx->regClientStartupScript($this->options['assetsUrl'] . 'mgr/js/imageplus.panel.input.js');
     $this->modx->regClientStartupScript($this->options['assetsUrl'] . 'mgr/js/imageplus.window.editor.js');
     $this->modx->regClientStartupScript($this->options['assetsUrl'] . 'mgr/js/imageplus.migx_renderer.js');
     $this->modx->regClientStartupScript($this->options['assetsUrl'] . 'mgr/js/tools/JSON2.js');
     $this->modx->regClientStartupScript($this->options['assetsUrl'] . 'mgr/js/jquery/jquery.min.js');
     $this->modx->regClientStartupScript($this->options['assetsUrl'] . 'mgr/js/jquery/jquery.jcrop.min.js');
     $this->modx->regClientStartupScript($this->options['assetsUrl'] . 'mgr/js/imageplus.jquery.imagecrop.js');
     $this->modx->regClientStartupHTMLBlock('<script type="text/javascript">' . ' ImagePlus.config = ' . json_encode($this->options) . ';' . ' var $jIP = jQuery.noConflict();' . '</script>');
 }
開發者ID:Bruno17,項目名稱:ImagePlus,代碼行數:22,代碼來源:imageplus.class.php

示例2: regClientStartupHTMLBlock

 /**
  * @param $html
  */
 public function regClientStartupHTMLBlock($html)
 {
     $this->modx->regClientStartupHTMLBlock($html);
 }
開發者ID:suasti,項目名稱:pdoTools,代碼行數:7,代碼來源:_micromodx.php

示例3: regClientScripts

 /**
  * Register the client scripts
  */
 public function regClientScripts()
 {
     $this->modx->regClientStartupHTMLBlock('<script type="text/javascript">' . 'var ToggleTVSet = {"options": ' . json_encode(array('debug' => $this->getOption('debug'), 'toggletvs' => $this->getOption('toggletvs'))) . '};' . '</script>');
     $this->modx->regClientStartupScript($this->options['assetsUrl'] . 'mgr/js/toggletvset.js?v=v' . $this->version);
 }
開發者ID:blue148,項目名稱:ToggleTVSet,代碼行數:8,代碼來源:toggletvset.class.php


注:本文中的modX::regClientStartupHTMLBlock方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。