Changeset 7434 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-reports/index.php
- Timestamp:
- 07/12/2018 12:22:11 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-reports/index.php
r7376 r7434 25 25 * Get the path for the includes directory. 26 26 * 27 * @return string Path with trailing slash 27 * @return string Path with trailing slash. 28 28 */ 29 29 function get_classes_dir_path() { … … 34 34 * Get the path for the views directory. 35 35 * 36 * @return string Path with trailing slash 36 * @return string Path with trailing slash. 37 37 */ 38 38 function get_views_dir_path() { 39 39 return trailingslashit( PLUGIN_DIR ) . 'views/'; 40 } 41 42 /** 43 * Get the path for the assets directory. 44 * 45 * @return string Path with trailing slash. 46 */ 47 function get_assets_dir_path() { 48 return trailingslashit( PLUGIN_DIR ) . 'assets/'; 40 49 } 41 50 … … 203 212 get_assets_url() . 'css/admin-common.css', 204 213 array(), 205 CSS_VERSION214 filemtime( get_assets_dir_path() . 'css/admin-common.css' ) 206 215 ); 207 216
Note: See TracChangeset
for help on using the changeset viewer.