Plugin Directory

Changeset 1158329


Ignore:
Timestamp:
05/11/2015 11:48:15 PM (10 years ago)
Author:
rafafc
Message:

tagging version 1.0.1

Location:
oxford-debate
Files:
4 edited
6 copied

Legend:

Unmodified
Added
Removed
  • oxford-debate/tags/1.0.1/oxd-settings.php

    r1158322 r1158329  
    3030       
    3131            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' ) );
    3333           
    3434        }
  • oxford-debate/tags/1.0.1/oxd.php

    r1158322 r1158329  
    77 * the capabilities of both speakers and audience. The speakers may argue using web connectivity and multimedia,
    88 * and the audience can also comment fixing its position on the proposals of the speakers or raising their own alternatives.
    9  * Version: 1.0.0
     9 * Version: 1.0.1
    1010 * Author: Rafa Fernandez
    1111 * Author URI: http://cws-tech.com
     
    2121}
    2222
    23 define( 'OXD_VERSION', '1.0.0' );
     23define( 'OXD_VERSION', '1.0.1' );
    2424define( 'OXD_DIR', plugin_dir_path( __FILE__ ) );
    2525
     
    154154
    155155
    156     /**
    157         * Get the plugin url.
    158         * @return string
    159     */
    160     function plugin_url() {
    161         return untrailingslashit( plugins_url( '/', __FILE__ ) );
    162     }
    163      /**
    164         * Get the plugin path.
    165         * @return string
    166     */
    167     function plugin_path() {
    168         return untrailingslashit( plugin_dir_path( __FILE__ ) );
    169     }
    170 
    171156    function template_loader( $template ) {
    172157    $file = '';
     
    249234}
    250235
    251 
    252 
     236/**
     237    * Get the plugin url.
     238    * @return string
     239*/
     240function plugin_url() {
     241    return untrailingslashit( plugins_url( '/', __FILE__ ) );
     242}
     243/**
     244    * Get the plugin path.
     245    * @return string
     246*/
     247function plugin_path() {
     248    return untrailingslashit( plugin_dir_path( __FILE__ ) );
     249}
    253250
    254251
  • oxford-debate/tags/1.0.1/readme.txt

    r1158322 r1158329  
    4949
    5050== Changelog ==
     51= 1.0.1 =
     52* Fixed: single-debate.php bug
     53
    5154= 1.0.0 =
    5255* 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
     2wp_enqueue_style( 'oxford-bootstrap', plugins_url( '/oxd/css/bootstrap.min.css' ) );   
     3?>
    24
    35<?php
  • oxford-debate/trunk/oxd-settings.php

    r1158322 r1158329  
    3030       
    3131            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' ) );
    3333           
    3434        }
  • oxford-debate/trunk/oxd.php

    r1158322 r1158329  
    77 * the capabilities of both speakers and audience. The speakers may argue using web connectivity and multimedia,
    88 * and the audience can also comment fixing its position on the proposals of the speakers or raising their own alternatives.
    9  * Version: 1.0.0
     9 * Version: 1.0.1
    1010 * Author: Rafa Fernandez
    1111 * Author URI: http://cws-tech.com
     
    2121}
    2222
    23 define( 'OXD_VERSION', '1.0.0' );
     23define( 'OXD_VERSION', '1.0.1' );
    2424define( 'OXD_DIR', plugin_dir_path( __FILE__ ) );
    2525
     
    154154
    155155
    156     /**
    157         * Get the plugin url.
    158         * @return string
    159     */
    160     function plugin_url() {
    161         return untrailingslashit( plugins_url( '/', __FILE__ ) );
    162     }
    163      /**
    164         * Get the plugin path.
    165         * @return string
    166     */
    167     function plugin_path() {
    168         return untrailingslashit( plugin_dir_path( __FILE__ ) );
    169     }
    170 
    171156    function template_loader( $template ) {
    172157    $file = '';
     
    249234}
    250235
    251 
    252 
     236/**
     237    * Get the plugin url.
     238    * @return string
     239*/
     240function plugin_url() {
     241    return untrailingslashit( plugins_url( '/', __FILE__ ) );
     242}
     243/**
     244    * Get the plugin path.
     245    * @return string
     246*/
     247function plugin_path() {
     248    return untrailingslashit( plugin_dir_path( __FILE__ ) );
     249}
    253250
    254251
  • oxford-debate/trunk/readme.txt

    r1158322 r1158329  
    4949
    5050== Changelog ==
     51= 1.0.1 =
     52* Fixed: single-debate.php bug
     53
    5154= 1.0.0 =
    5255* 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
     2wp_enqueue_style( 'oxford-bootstrap', plugins_url( '/oxd/css/bootstrap.min.css' ) );   
     3?>
    24
    35<?php
Note: See TracChangeset for help on using the changeset viewer.