This repository has been archived by the owner on Nov 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wpidme_ShortCodeScriptLoader.php
66 lines (52 loc) · 2.29 KB
/
wpidme_ShortCodeScriptLoader.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/*
"WordPress Plugin Template" Copyright (C) 2014 Michael Simpson (email : [email protected])
This file is part of WordPress Plugin Template for WordPress.
WordPress Plugin Template is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
WordPress Plugin Template is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Contact Form to Database Extension.
If not, see http://www.gnu.org/licenses/gpl-3.0.html
*/
include_once('wptroopid_ShortCodeLoader.php');
/**
* Adapted from this excellent article:
* http://scribu.net/wordpress/optimal-script-loading.html
*
* The idea is you have a shortcode that needs a script loaded, but you only
* want to load it if the shortcode is actually called.
*/
abstract class wpidme_ShortCodeScriptLoader extends wpidme_ShortCodeLoader {
var $doAddScript;
public function register($shortcodeName) {
$this->registerShortcodeToFunction($shortcodeName, 'handleShortcodeWrapper');
// It will be too late to enqueue the script in the header,
// but can add them to the footer
add_action('wp_footer', array($this, 'addScriptWrapper'));
}
public function handleShortcodeWrapper($atts) {
// Flag that we need to add the script
$this->doAddScript = true;
return $this->handleShortcode($atts);
}
public function addScriptWrapper() {
// Only add the script if the shortcode was actually called
if ($this->doAddScript) {
$this->addScript();
}
}
/**
* @abstract override this function with calls to insert scripts needed by your shortcode in the footer
* Example:
* wp_register_script('my-script', plugins_url('js/my-script.js', __FILE__), array('jquery'), '1.0', true);
* wp_print_scripts('my-script');
* @return void
*/
public abstract function addScript();
}