当前位置: 首页>>代码示例>>PHP>>正文


PHP Tribe__Events__Template_Factory::add_vendor_script方法代码示例

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


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

示例1: handle

 public function handle()
 {
     $handle = 'jquery-ui-datepicker';
     wp_enqueue_script($handle);
     wp_enqueue_style($handle);
     Tribe__Events__Template_Factory::add_vendor_script($handle);
 }
开发者ID:duongnguyen92,项目名称:tvd12v2,代码行数:7,代码来源:Datepicker.php

示例2: handle

 public function handle()
 {
     $deps = array_merge($this->deps, array('jquery'));
     $path = Tribe__Events__Template_Factory::getMinFile($this->vendor_url . 'jquery-placeholder/jquery.placeholder.js', true);
     $placeholder_handle = Tribe__Events__Template_Factory::get_placeholder_handle();
     wp_enqueue_script($placeholder_handle, $path, $deps, '2.0.7', false);
     Tribe__Events__Template_Factory::add_vendor_script($placeholder_handle);
 }
开发者ID:duongnguyen92,项目名称:tvd12v2,代码行数:8,代码来源:Jquery_Placeholder.php

示例3: handle

 public function handle()
 {
     $path = Tribe__Events__Template_Factory::getMinFile($this->vendor_url . 'jquery-resize/jquery.ba-resize.js', true);
     $deps = array_merge($this->deps, array('jquery'));
     $handle = $this->prefix . '-jquery-resize';
     wp_enqueue_script($handle, $path, $deps, '1.1', false);
     Tribe__Events__Template_Factory::add_vendor_script($handle);
 }
开发者ID:partisan-collective,项目名称:partisan,代码行数:8,代码来源:Jquery_Resize.php

示例4: handle

 public function handle()
 {
     $css_path = Tribe__Events__Template_Factory::getMinFile($this->vendor_url . 'select2/select2.css', true);
     $path = Tribe__Events__Template_Factory::getMinFile($this->vendor_url . 'select2/select2.js', true);
     wp_enqueue_style($this->prefix . '-select2-css', $css_path);
     $script_handle = $this->prefix . '-select2';
     wp_enqueue_script($script_handle, $path, 'jquery', '3.2');
     Tribe__Events__Template_Factory::add_vendor_script($script_handle);
 }
开发者ID:duongnguyen92,项目名称:tvd12v2,代码行数:9,代码来源:Select2.php

示例5: handle

 public function handle()
 {
     $deps = array_merge($this->deps, array('jquery'));
     $css_path = Tribe__Events__Template_Factory::getMinFile($this->vendor_url . 'chosen/public/chosen.css', true);
     $path = Tribe__Events__Template_Factory::getMinFile($this->vendor_url . 'chosen/public/chosen.jquery.js', true);
     wp_enqueue_style($this->prefix . '-chosen-style', $css_path);
     $handle = $this->prefix . '-chosen-jquery';
     wp_enqueue_script($handle, $path, $deps, '0.9.5', false);
     Tribe__Events__Template_Factory::add_vendor_script($handle);
 }
开发者ID:duongnguyen92,项目名称:tvd12v2,代码行数:10,代码来源:Chosen.php

示例6: handle

 public function handle()
 {
     $css_path = Tribe__Events__Template_Factory::getMinFile($this->vendor_url . 'bootstrap-datepicker/css/datepicker.css', true);
     $path = Tribe__Events__Template_Factory::getMinFile($this->vendor_url . 'bootstrap-datepicker/js/bootstrap-datepicker.min.js', true);
     wp_enqueue_style($this->prefix . '-bootstrap-datepicker-css', $css_path);
     $handle = $this->prefix . '-bootstrap-datepicker';
     wp_enqueue_script($handle, $path, 'jquery', '3.2');
     Tribe__Events__Template_Factory::add_vendor_script($handle);
     $localized_datepicker_array = array('days' => array_merge($this->tec->daysOfWeek, array($this->tec->daysOfWeek[0])), 'daysShort' => array_merge($this->tec->daysOfWeekShort, array($this->tec->daysOfWeekShort[0])), 'daysMin' => array_merge($this->tec->daysOfWeekMin, array($this->tec->daysOfWeekMin[0])), 'months' => array_values($this->tec->monthsFull), 'monthsShort' => array_values($this->tec->monthsShort), 'clear' => __('Clear', 'the-events-calendar'), 'today' => __('Today', 'the-events-calendar'));
     wp_localize_script($handle, 'tribe_bootstrap_datepicker_strings', array('dates' => $localized_datepicker_array));
 }
开发者ID:partisan-collective,项目名称:partisan,代码行数:11,代码来源:Bootstrap_Datepicker.php

示例7: handle

 public function handle()
 {
     $css_path = Tribe__Events__Template_Factory::getMinFile($this->vendor_url . 'select2/select2.css', true);
     $path = Tribe__Events__Template_Factory::getMinFile($this->vendor_url . 'select2/select2.js', true);
     wp_enqueue_style($this->prefix . '-select2-css', $css_path);
     // we know of other plugins loading a version of select2 compatible with our needs
     // let's not queue the script twice.
     if (!$this->has_script_alias('select2')) {
         $script_handle = $this->prefix . '-select2';
         wp_enqueue_script($script_handle, $path, 'jquery', '3.2');
         Tribe__Events__Template_Factory::add_vendor_script($script_handle);
     }
 }
开发者ID:uwmadisoncals,项目名称:Cluster-Plugins,代码行数:13,代码来源:Select2.php

示例8: handle

 public function handle()
 {
     wp_enqueue_script('jquery-ui-dialog');
     Tribe__Events__Template_Factory::add_vendor_script('jquery-ui-dialog');
 }
开发者ID:partisan-collective,项目名称:partisan,代码行数:5,代码来源:Dialog.php


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