Changeset 1158329
- Timestamp:
- 05/11/2015 11:48:15 PM (10 years ago)
- Location:
- oxford-debate
- Files:
-
- 4 edited
- 6 copied
Legend:
- Unmodified
- Added
- Removed
-
oxford-debate/tags/1.0.1/oxd-settings.php
r1158322 r1158329 30 30 31 31 wp_enqueue_style( 'jquery-ui-datepicker', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/themes/smoothness/jquery-ui.css' ); 32 wp_enqueue_style( 'wp-jquery-date-picker', plugins_url( '/oxd/css/admin.css' ) );32 //wp_enqueue_style( 'wp-jquery-date-picker', plugins_url( '/oxd/css/admin.css' ) ); 33 33 34 34 } -
oxford-debate/tags/1.0.1/oxd.php
r1158322 r1158329 7 7 * the capabilities of both speakers and audience. The speakers may argue using web connectivity and multimedia, 8 8 * and the audience can also comment fixing its position on the proposals of the speakers or raising their own alternatives. 9 * Version: 1.0. 09 * Version: 1.0.1 10 10 * Author: Rafa Fernandez 11 11 * Author URI: http://cws-tech.com … … 21 21 } 22 22 23 define( 'OXD_VERSION', '1.0. 0' );23 define( 'OXD_VERSION', '1.0.1' ); 24 24 define( 'OXD_DIR', plugin_dir_path( __FILE__ ) ); 25 25 … … 154 154 155 155 156 /**157 * Get the plugin url.158 * @return string159 */160 function plugin_url() {161 return untrailingslashit( plugins_url( '/', __FILE__ ) );162 }163 /**164 * Get the plugin path.165 * @return string166 */167 function plugin_path() {168 return untrailingslashit( plugin_dir_path( __FILE__ ) );169 }170 171 156 function template_loader( $template ) { 172 157 $file = ''; … … 249 234 } 250 235 251 252 236 /** 237 * Get the plugin url. 238 * @return string 239 */ 240 function plugin_url() { 241 return untrailingslashit( plugins_url( '/', __FILE__ ) ); 242 } 243 /** 244 * Get the plugin path. 245 * @return string 246 */ 247 function plugin_path() { 248 return untrailingslashit( plugin_dir_path( __FILE__ ) ); 249 } 253 250 254 251 -
oxford-debate/tags/1.0.1/readme.txt
r1158322 r1158329 49 49 50 50 == Changelog == 51 = 1.0.1 = 52 * Fixed: single-debate.php bug 53 51 54 = 1.0.0 = 52 55 * Added: Init date and end date -
oxford-debate/tags/1.0.1/templates/single-debate.php
r1158322 r1158329 1 <?php wp_enqueue_style( 'oxford-bootstrap', plugins_url('css/bootstrap.min.css', __FILE__) ); ?> 1 <?php 2 wp_enqueue_style( 'oxford-bootstrap', plugins_url( '/oxd/css/bootstrap.min.css' ) ); 3 ?> 2 4 3 5 <?php -
oxford-debate/trunk/oxd-settings.php
r1158322 r1158329 30 30 31 31 wp_enqueue_style( 'jquery-ui-datepicker', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/themes/smoothness/jquery-ui.css' ); 32 wp_enqueue_style( 'wp-jquery-date-picker', plugins_url( '/oxd/css/admin.css' ) );32 //wp_enqueue_style( 'wp-jquery-date-picker', plugins_url( '/oxd/css/admin.css' ) ); 33 33 34 34 } -
oxford-debate/trunk/oxd.php
r1158322 r1158329 7 7 * the capabilities of both speakers and audience. The speakers may argue using web connectivity and multimedia, 8 8 * and the audience can also comment fixing its position on the proposals of the speakers or raising their own alternatives. 9 * Version: 1.0. 09 * Version: 1.0.1 10 10 * Author: Rafa Fernandez 11 11 * Author URI: http://cws-tech.com … … 21 21 } 22 22 23 define( 'OXD_VERSION', '1.0. 0' );23 define( 'OXD_VERSION', '1.0.1' ); 24 24 define( 'OXD_DIR', plugin_dir_path( __FILE__ ) ); 25 25 … … 154 154 155 155 156 /**157 * Get the plugin url.158 * @return string159 */160 function plugin_url() {161 return untrailingslashit( plugins_url( '/', __FILE__ ) );162 }163 /**164 * Get the plugin path.165 * @return string166 */167 function plugin_path() {168 return untrailingslashit( plugin_dir_path( __FILE__ ) );169 }170 171 156 function template_loader( $template ) { 172 157 $file = ''; … … 249 234 } 250 235 251 252 236 /** 237 * Get the plugin url. 238 * @return string 239 */ 240 function plugin_url() { 241 return untrailingslashit( plugins_url( '/', __FILE__ ) ); 242 } 243 /** 244 * Get the plugin path. 245 * @return string 246 */ 247 function plugin_path() { 248 return untrailingslashit( plugin_dir_path( __FILE__ ) ); 249 } 253 250 254 251 -
oxford-debate/trunk/readme.txt
r1158322 r1158329 49 49 50 50 == Changelog == 51 = 1.0.1 = 52 * Fixed: single-debate.php bug 53 51 54 = 1.0.0 = 52 55 * Added: Init date and end date -
oxford-debate/trunk/templates/single-debate.php
r1158322 r1158329 1 <?php wp_enqueue_style( 'oxford-bootstrap', plugins_url('css/bootstrap.min.css', __FILE__) ); ?> 1 <?php 2 wp_enqueue_style( 'oxford-bootstrap', plugins_url( '/oxd/css/bootstrap.min.css' ) ); 3 ?> 2 4 3 5 <?php
Note: See TracChangeset
for help on using the changeset viewer.