PluginProbe ʕ •ᴥ•ʔ
Pods – Custom Content Types and Fields / 3.3.9.1
Pods – Custom Content Types and Fields v3.3.9.1
2.7.31.4 2.8.23.5 2.9.19.5 3.0.10.5 3.1.4.3 3.2.8.4 3.3.9.2 2.8.23.4 2.9.19.4 3.0.10.4 3.1.4.2 3.2.8.3 3.3.9.1 trunk 1.14.8 2.7.31.3 2.8.23.3 2.9.19.3 3.0.10.3 3.1.4.1 3.2.0 3.2.1 3.2.1.1 3.2.2 3.2.4 3.2.5 3.2.6 3.2.7 3.2.7.1 3.2.8 3.2.8.1 3.2.8.2 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9
pods / components / Templates / assets / assets-view_template.php
pods / components / Templates / assets Last commit date
css 2 weeks ago images 2 weeks ago js 2 weeks ago assets-pod_reference.php 2 weeks ago assets-view_template.php 2 weeks ago
assets-view_template.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 'cm-comp' => $this->get_url( '/assets/js/codemirror-compressed1.js', dirname( __FILE__ ) ),
23 'cm-editor' => $this->get_url( '/assets/js/editor1.js', dirname( __FILE__ ) ),
24 'cm-css' => $this->get_url( '/assets/css/codemirror1.css', dirname( __FILE__ ) ),
25 );
26