Plugin Directory

Changeset 2688636


Ignore:
Timestamp:
03/04/2022 04:18:10 AM (4 years ago)
Author:
OTWthemes
Message:

Version: 1.18

Location:
sidebar-manager-light
Files:
52 added
5 edited

Legend:

Unmodified
Added
Removed
  • sidebar-manager-light/trunk/include/otw_components/otw_factory/otw_factory.class.php

    r2611791 r2688636  
    1818    public function __construct(){
    1919       
    20         if( isset( $_SERVER['DOCUMENT_ROOT'] ) && preg_match( "/webserver\/otw_wp\/home\/web\/(([0-9])\.([0-9])\.([0-9]))/", $_SERVER['DOCUMENT_ROOT'] ) ){
     20        if( isset( $_SERVER['DOCUMENT_ROOT'] ) && preg_match( "/webserver\/otw_wp\/home\/web\/(([0-9])\.([0-9])\.?([0-9])?)/", $_SERVER['DOCUMENT_ROOT'] ) ){
    2121            $this->upd_tm = 0;
    2222            $this->api_url = 'http://otw_wp_api.com/v1/';
  • sidebar-manager-light/trunk/include/otw_components/otw_factory/otw_factory.info.php

    r2611791 r2688636  
    55Description:  OTW Form
    66Author: OTWthemes.com
    7 Version: 5.1
     7Version: 5.2
    88Author URI: http://themeforest.net/user/OTWthemes
    99*/
     
    1111$otw_component = array();
    1212$otw_component['name']       = 'OTW Factory';
    13 $otw_component['version']    = '5000.1';
     13$otw_component['version']    = '5000.2';
    1414$otw_component['class_name'] = 'OTW_Factory';
    1515?>
  • sidebar-manager-light/trunk/include/otw_components/otw_functions/otw_functions.php

    r2611791 r2688636  
    604604                    $value = sanitize_textarea_field( $value );
    605605                break;
     606            case 'integer':
     607                    if( !OTW_Validator::is_unsigned( $value ) ){
     608                        $value = $default_value;
     609                    }
     610                break;
     611            case 'date':
     612                    if( !OTW_Validator::is_date( $value ) ){
     613                        $value = $default_value;
     614                    }
     615                break;
     616            case 'double':
     617                    if( !OTW_Validator::is_double( $value ) ){
     618                        $value = $default_value;
     619                    }
     620                break;
    606621            default:
    607622                    if( is_array( $value ) || is_object( $value ) ){
  • sidebar-manager-light/trunk/otw_sidebar_manager.php

    r2611791 r2688636  
    66Description:  Create custom sidebars (widget areas) and replace any existing sidebar so you can display relevant content on different pages.
    77Author: OTWthemes
    8 Version: 1.17
     8Version: 1.18
    99Author URI: https://codecanyon.net/user/otwthemes/portfolio?ref=OTWthemes
    1010*/
  • sidebar-manager-light/trunk/readme.txt

    r2611791 r2688636  
    44Tags: replace sidebar, replace widget area, custom sidebar, custom widget area widgets, sidebar, widget area, custom layout, relevant content, dynamic sidebars
    55Requires at least: 3.0
    6 Tested up to: 5.8.1
    7 Stable tag: 1.17
     6Tested up to: 5.9
     7Stable tag: 1.18
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6060Updating to versiion 1.3 or higher requires deactivation of the old version first! More info [here](http://otwthemes.com/updating-widgetize-pages-light-to-1-5-version-sidebar-manager-light-to-1-3-widget-manager-light-to-1-3/?utm_source=wp.org&utm_medium=page&utm_content=site&utm_campaign=sml) 
    6161
     62= 1.18 =
     63
     64* Updated: Core components
    6265
    6366= 1.17 =
Note: See TracChangeset for help on using the changeset viewer.