Changeset 2083492
- Timestamp:
- 05/08/2019 11:32:40 AM (7 years ago)
- Location:
- rng-shortlink/trunk
- Files:
-
- 3 edited
-
includes/class.init.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
rng-shortlink.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rng-shortlink/trunk/includes/class.init.php
r2060399 r2083492 35 35 public function plugins_loaded() { 36 36 load_plugin_textdomain($this->slug, false, RNGSHL_PRT . "/languages"); 37 require_once trailingslashit(__DIR__) . "translate.php"; 37 38 } 38 39 … … 55 56 require_once 'class.controller.settings.php'; 56 57 require_once 'class.controller.clicked.php'; 57 require_once trailingslashit(__DIR__) . "translate.php";58 58 } 59 59 -
rng-shortlink/trunk/readme.txt
r2059548 r2083492 27 27 it is strongly was recommended that after the plugin is activated, go to the permalink settings and change URL structure and undo. 28 28 29 = Github Repository =30 Also You can find plugin repository on github:31 [https://github.com/a-sabagh/rng-shortlink](https://github.com/a-sabagh/rng-shortlink)32 33 == Screenshots ==34 35 1. Click count report36 2. Meta Box37 3. Settings panel38 39 29 == Installation == 40 30 -
rng-shortlink/trunk/rng-shortlink.php
r2047971 r2083492 15 15 } 16 16 17 define( RNGSHL_FILE, __FILE__);18 define( RNGSHL_PRF, plugin_basename(__FILE__)); //rng-shortlink/rng-shortlink.php19 define( RNGSHL_PDU, plugin_dir_url(__FILE__)); //http://localhost:8888/rng-plugin/wp-content/plugins/rng-shortlink/20 define( RNGSHL_PRT, basename(__DIR__)); //rng-refresh.php21 define( RNGSHL_PDP, plugin_dir_path(__FILE__)); //Applications/MAMP/htdocs/rng-plugin/wp-content/plugins/rng-shortlink/22 define( RNGSHL_TMP, RNGSHL_PDP . "public/"); // view OR templates System for public23 define( RNGSHL_ADM, RNGSHL_PDP . "admin/"); // view OR templates System for admin panel17 define("RNGSHL_FILE", __FILE__); 18 define("RNGSHL_PRF", plugin_basename(__FILE__)); //rng-shortlink/rng-shortlink.php 19 define("RNGSHL_PDU", plugin_dir_url(__FILE__)); //http://localhost:8888/rng-plugin/wp-content/plugins/rng-shortlink/ 20 define("RNGSHL_PRT", basename(__DIR__)); //rng-refresh.php 21 define("RNGSHL_PDP", plugin_dir_path(__FILE__)); //Applications/MAMP/htdocs/rng-plugin/wp-content/plugins/rng-shortlink/ 22 define("RNGSHL_TMP", RNGSHL_PDP . "public/"); // view OR templates System for public 23 define("RNGSHL_ADM", RNGSHL_PDP . "admin/"); // view OR templates System for admin panel 24 24 25 25 require_once 'includes/class.init.php';
Note: See TracChangeset
for help on using the changeset viewer.