-
Notifications
You must be signed in to change notification settings - Fork 1
/
shortcode.php
58 lines (50 loc) · 1.7 KB
/
shortcode.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
<?php
/*
* Copyright 2016 Samuel Behan <samuel(.)behan(at)dob(.)sk>
*
* This program 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.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
*/
defined('ABSPATH') or exit();
function wp_datatable_shortcode($attrs, $content = null) {
// id=ID
$id = $attrs ? $attrs['id'] : 0;
// fat=LEVEL
$fat = $attrs ? $attrs['fat'] : 0;
if (!$fat) {
wp_enqueue_style('wp-datatable-style');
wp_enqueue_script('wp-datatable-script');
} else {
wp_enqueue_style('wp-datatable-style-fat1');
wp_enqueue_script('wp-datatable-script-fat1');
}
if ($content || $id) {
if (!isset($id))
return '<b>wp-datatable: required parameter ID is missing</b>';
$content = 'jQuery(document).ready(function () { jQuery(' . "'#$id'" . ').DataTable({' . $content . '}); });';
return '<script type="text/javascript">' .
$content .
'</script>';
} else {
return null;
}
}
function wp_datatable_shortcode__register() {
// NOTE: processing happens in wp_datatable_run_shortcode()
add_shortcode('wp-datatable', 'wp_datatable_shortcode');
}
wp_datatable_shortcode__register();
?>