css
11 months ago
images
12 years ago
js
1 year ago
assets-pod_reference.php
4 months ago
assets-view_template.php
4 months ago
assets-pod_reference.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | // Don't load directly. |
| 4 | if ( ! defined( 'ABSPATH' ) ) { |
| 5 | die( '-1' ); |
| 6 | } |
| 7 | |
| 8 | // phpcs:ignoreFile WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound |
| 9 | |
| 10 | /** |
| 11 | * |
| 12 | * registered assets for pods_templates |
| 13 | * |
| 14 | * @package Pods_templates |
| 15 | * @author David Cramer david@digilab.co.za |
| 16 | * @license GPL-2.0+ |
| 17 | * @link |
| 18 | * @copyright 2014 David Cramer |
| 19 | */ |
| 20 | |
| 21 | $assets = array( |
| 22 | 'handlebarsjs' => $this->get_url( '/assets/js/handlebars2.js', dirname( __FILE__ ) ), |
| 23 | 'baldrickjs' => $this->get_url( '/assets/js/jquery.baldrick3.js', dirname( __FILE__ ) ), |
| 24 | 'handlebars-baldrick' => $this->get_url( '/assets/js/handlebars.baldrick2.js', dirname( __FILE__ ) ), |
| 25 | ); |
| 26 |