PluginProbe
VikWidgetsLoader – Collection of Widgets / 1.12.1
VikWidgetsLoader – Collection of Widgets v1.12.1
1.12.1 1.12.0 trunk 1.11.0
vikwidgetsloader / constants.php

constants.php in VikWidgetsLoader – Collection of Widgets 1.12.1, at constants.php

25 lines 996 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package VikWidgetsLoader
4 * @subpackage constants
5 * @author E4J s.r.l.
6 * @copyright Copyright (C) 2018 E4J s.r.l. All Rights Reserved.
7 * @license GNU General Public License version 2 or later; see LICENSE
8 * @link https://vikwp.com
9 */
10
11 defined('ABSPATH') or die('No script kiddies please!');
12
13 // Plugin Version
14 define("VIKWIDGETSLOADER_VERSION", '1.12.1');
15 // Language Folder
16 define("VIKWIDGETSLOADER_LANGUAGEROOT", basename(dirname(__FILE__)).DIRECTORY_SEPARATOR."languages".DIRECTORY_SEPARATOR);
17 // Widgets Folder
18 define("VIKWIDGETSLOADER_WIDGETROOT", dirname(__FILE__).DIRECTORY_SEPARATOR."widgets".DIRECTORY_SEPARATOR);
19 // Assets Folder
20 define("VIKWIDGETSLOADER_ASSETSROOT", dirname(__FILE__).DIRECTORY_SEPARATOR."assets".DIRECTORY_SEPARATOR);
21 // Widgets URI Directory Path
22 define("VIKWIDGETSLOADER_WIDGETS_URI", plugin_dir_url(__FILE__)."widgets/");
23 // Assets Directory Path
24 define("VIKWIDGETSLOADER_ASSETS_URI", plugin_dir_url(__FILE__)."assets/");
25