本文整理汇总了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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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));
}
示例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);
}
}
示例8: handle
public function handle()
{
wp_enqueue_script('jquery-ui-dialog');
Tribe__Events__Template_Factory::add_vendor_script('jquery-ui-dialog');
}