Plugin Directory

Changeset 1643821


Ignore:
Timestamp:
04/24/2017 11:57:19 AM (9 years ago)
Author:
offshorent
Message:

New Version(1.3) committed

Location:
os-materializecss-popup
Files:
53 added
9 edited

Legend:

Unmodified
Added
Removed
  • os-materializecss-popup/trunk/includes/admin/meta-boxes/class.osmp.design.php

    r1522538 r1643821  
    1010 *
    1111 * @class       osmpMetaboxDesigns
    12  * @version     1.2
     12 * @version     1.3
    1313 * @category    Class
    1414 * @author      Offshorent Softwares Pvt Ltd. | Jinesh.P.V
     
    6060 * Returns the main instance of osmpMetaboxDesigns to prevent the need to use globals.
    6161 *
    62  * @since  1.2
     62 * @since  1.3
    6363 * @return osmpMetaboxDesigns
    6464 */
  • os-materializecss-popup/trunk/includes/admin/meta-boxes/class.osmp.designs.php

    r1522538 r1643821  
    1010 *
    1111 * @class       osmpMetaboxDesigns
    12  * @version     1.2
     12 * @version     1.3
    1313 * @category    Class
    1414 * @author      Offshorent Softwares Pvt Ltd. | Jinesh.P.V
     
    6060 * Returns the main instance of osmpMetaboxDesigns to prevent the need to use globals.
    6161 *
    62  * @since  1.2
     62 * @since  1.3
    6363 * @return osmpMetaboxDesigns
    6464 */
  • os-materializecss-popup/trunk/includes/admin/meta-boxes/class.osmp.general.php

    r1522538 r1643821  
    1010 *
    1111 * @class       osmpMetaboxGeneral
    12  * @version     1.2
     12 * @version     1.3
    1313 * @category    Class
    1414 * @author      Offshorent Softwares Pvt Ltd. | Jinesh.P.V
     
    6060 * Returns the main instance of osmpMetaboxGeneral to prevent the need to use globals.
    6161 *
    62  * @since  1.2
     62 * @since  1.3
    6363 * @return osmpMetaboxGeneral
    6464 */
  • os-materializecss-popup/trunk/includes/admin/meta-boxes/class.osmp.settings.php

    r1522538 r1643821  
    1010 *
    1111 * @class       osmpMetaboxSettings
    12  * @version     1.2
     12 * @version     1.3
    1313 * @category    Class
    1414 * @author      Offshorent Softwares Pvt Ltd. | Jinesh.P.V
  • os-materializecss-popup/trunk/includes/admin/meta-boxes/class.osmp.shortcode.php

    r1522538 r1643821  
    1010 *
    1111 * @class       osmpMetaboxShortcode
    12  * @version     1.2
     12 * @version     1.3
    1313 * @category    Class
    1414 * @author      Offshorent Softwares Pvt Ltd. | Jinesh.P.V
  • os-materializecss-popup/trunk/includes/admin/osmp-about.php

    r1522538 r1643821  
    1010 *
    1111 * @class       osmpAbout
    12  * @version     1.2
     12 * @version     1.3
    1313 * @category    Class
    1414 * @author      Offshorent Softwares Pvt Ltd. | Jinesh.P.V
     
    4040        * about_osmp_developer for ourteam blog
    4141        *
    42         * @since  1.2
     42        * @since  1.3
    4343        */
    4444   
  • os-materializecss-popup/trunk/includes/admin/osmp-post-types.php

    r1522538 r1643821  
    1010 *
    1111 * @class       osmpPostTypes
    12  * @version     1.2
     12 * @version     1.3
    1313 * @category    Class
    1414 * @author      Offshorent Softwares Pvt Ltd. | Jinesh.P.V
     
    181181 * Returns the main instance of osmpPostTypes to prevent the need to use globals.
    182182 *
    183  * @since  1.2
     183 * @since  1.3
    184184 * @return osmpPostTypes
    185185 */
  • os-materializecss-popup/trunk/os-materializecss-popup.php

    r1522538 r1643821  
    44Plugin URI: http://offshorent.com/blog/extensions/os-materializecss-popup
    55Description: OS Materializecss PopUp is the colorful, responsive, customizable popup plugin for WordPress using materialize css.
    6 Version: 1.2
     6Version: 1.3
    77Author: Offshorent Softwares Pvt Ltd. | Jinesh.P.V
    88Author URI: http://offshorent.com/
     
    3434    *
    3535    * @class osmpPopUp
    36     * @version  1.2
     36    * @version  1.3
    3737    */
    3838
     
    4141        /**
    4242        * @var string
    43         * @since    1.2
    44         */
    45          
    46         public $version = '1.2';
     43        * @since    1.3
     44        */
     45         
     46        public $version = '1.3';
    4747       
    4848        /**
    4949        * @var osmpPopUp The single instance of the class
    50         * @since 1.2
     50        * @since 1.3
    5151        */
    5252       
     
    5858        * Ensures only one instance of osmpPopUp is loaded or can be loaded.
    5959        *
    60         * @since 1.2
     60        * @since 1.3
    6161        * @static
    6262        * @see OSBX()
     
    7474        * Cloning is forbidden.
    7575        *
    76         * @since 1.2
     76        * @since 1.3
    7777        */
    7878
    7979        public function __clone() {
    80             _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '1.2' );
     80            _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '1.3' );
    8181        }
    8282
     
    8484        * Unserializing instances of this class is forbidden.
    8585        *
    86         * @since 1.2
     86        * @since 1.3
    8787        */
    8888         
    8989        public function __wakeup() {
    90             _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '1.2' );
     90            _doing_it_wrong( __FUNCTION__, 'Cheatin’ huh?', '1.3' );
    9191        }
    9292           
     
    9494        * Get the plugin url.
    9595        *
    96         * @since 1.2
     96        * @since 1.3
    9797        */
    9898
     
    104104        * Get the plugin path.
    105105        *
    106         * @since 1.2
     106        * @since 1.3
    107107        */
    108108
     
    114114        * Get Ajax URL.
    115115        *
    116         * @since 1.2
     116        * @since 1.3
    117117        */
    118118
     
    125125        * @access public
    126126        * @return osmpPopUp
    127         * @since 1.2
     127        * @since 1.3
    128128        */
    129129         
     
    153153        /**
    154154        * Install osmpPopUp
    155         * @since 1.2
     155        * @since 1.3
    156156        */
    157157         
     
    167167        /**
    168168        * Define osmpPopUp Constants
    169         * @since 1.2
     169        * @since 1.3
    170170        */
    171171         
     
    181181        * includes admin defaults files
    182182        *
    183         * @since 1.2
     183        * @since 1.3
    184184        */
    185185         
     
    193193        /**
    194194        * Init osmpPopUp when WordPress Initialises.
    195         * @since 1.2
     195        * @since 1.3
    196196        */
    197197         
     
    204204        * Clean all output buffers
    205205        *
    206         * @since  1.2
     206        * @since  1.3
    207207        */
    208208         
     
    215215        * Callback function
    216216        *
    217         * @since  1.2
     217        * @since  1.3
    218218        */
    219219         
     
    225225        * Clean all output buffers
    226226        *
    227         * @since  1.2
     227        * @since  1.3
    228228        */
    229229         
     
    234234        /**
    235235        * Admin init osmpPopUp when WordPress Initialises.
    236         * @since  1.2
     236        * @since  1.3
    237237        */
    238238         
     
    257257        * Admin side style and javascript hook for osmpPopUp
    258258        *
    259         * @since  1.2
     259        * @since  1.3
    260260        */
    261261         
     
    266266            wp_enqueue_style( 'osmp-admin-style', plugins_url( 'css/admin/style-min.css', __FILE__ ) );
    267267
    268             wp_enqueue_script( 'osmp-custom-min', plugins_url( 'js/admin/custom-min.js', __FILE__ ), array( 'jquery', 'wp-color-picker' ), '1.2', true );
     268            wp_enqueue_script( 'osmp-custom-min', plugins_url( 'js/admin/custom-min.js', __FILE__ ), array( 'jquery', 'wp-color-picker' ), '1.3', true );
    269269        }
    270270
     
    272272        * Frontend style and javascript hook for osmpPopUp
    273273        *
    274         * @since  1.2
     274        * @since  1.3
    275275        */
    276276         
     
    280280            wp_enqueue_script( 'osmp-jquery', 'https://code.jquery.com/jquery-2.1.1.min.js', array( 'jquery' ), '2.1.1', true );
    281281            wp_enqueue_script( 'osmp-materialize', plugins_url( 'js/materialize.min.js', __FILE__ ), array( 'jquery' ), '0.97.3', true );
    282             wp_enqueue_script( 'osmp-custom-min', plugins_url( 'js/custom-min.js', __FILE__ ), array( 'jquery' ), '1.2', true );
     282            wp_enqueue_script( 'osmp-custom-min', plugins_url( 'js/custom-min.js', __FILE__ ), array( 'jquery' ), '1.3', true );
    283283        }
    284284
     
    286286        * Shortcode function osmp_materializecss_popup()
    287287        *
    288         * @since  1.2
     288        * @since  1.3
    289289        */
    290290
     
    314314 * Returns the main instance of osmpPopUp to prevent the need to use globals.
    315315 *
    316  * @since  1.2
     316 * @since  1.3
    317317 * @return osmpPopUp
    318318 */
  • os-materializecss-popup/trunk/readme.txt

    r1522538 r1643821  
    22Contributors: offshorent
    33Tags: contact form 7, Facebook, facebook like, facebook popup, GF, google, google plus, gravity forms, login popup, mailpoet, popup, popups, twitter, twitter follow, wordpress popup, wp popups
    4 Requires at least: 4.0
    5 Tested up to: 4.6.1
    6 Stable tag: 1.2
     4Requires at least: 4.3
     5Tested up to: 4.7.4
     6Stable tag: 1.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3333Minimum requirements:   
    3434   
    35  Wordpress 3.0+   
    36  PHP 5.x   
    37  MySQL 4.x+ 
     35 Wordpress 4.3+   
     36 PHP 5.4x   
     37 MySQL 5.2x+ 
    3838
    3939Installation from within backend:
Note: See TracChangeset for help on using the changeset viewer.