Пример #1
0
 public function handle()
 {
     $handle = 'jquery-ui-datepicker';
     wp_enqueue_script($handle);
     wp_enqueue_style($handle);
     Tribe__Events__Template_Factory::add_vendor_script($handle);
 }
Пример #2
0
 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);
 }
 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
0
 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
0
 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);
 }
 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
0
 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
0
 public function handle()
 {
     wp_enqueue_script('jquery-ui-dialog');
     Tribe__Events__Template_Factory::add_vendor_script('jquery-ui-dialog');
 }