<?php

class Portfolio_gallery_meta_layout_model extends WDWT_meta_model{
  
  public $params;
  
  function __construct(){
    
    $this->params = array( 

      'menu_width' => array( 
        "name" => "menu_width", 
        "title" => __("Menu width", 'portfolio-gallery'), 
        'type' => 'text', 
        "description" => __("Width of the Main Menu", 'portfolio-gallery'),
        'input_size' => '2',
        "sanitize_type" => "sanitize_text_field",
        'unit_symbol' => '%',
        'default' => $this->get_param('menu_width'),  
      ),
      'default_layout' => array(
        "name" => "default_layout", 
        "title" => __("Choose Default Layout",'portfolio-gallery'), 
        'type' => 'layout_open', 
        "description" => __( "Content layout.", 'portfolio-gallery' ), 
        'valid_options' => array( 
          array('index' => '1', 'title'=>'No Sidebar', 'description'=>''),
          array('index' => '2', 'title'=>'Right Sidebar', 'description'=>''),
          array('index' => '3', 'title'=>'Left Sidebar', 'description'=>''),
          array('index' => '4', 'title'=>'Two Right Sidebars', 'description'=>''),
          array('index' => '5', 'title'=>'Two Left Sidebars', 'description'=>''),
          array('index' => '6', 'title'=>'One Right One Left Sidebars', 'description'=>''),

        ),
        'show' => array(
                      '2'=>'main_column',
                      '3'=>'main_column',
                      '4'=>array('main_column', 'pwa_width'),
                      '5'=>array('main_column', 'pwa_width'),
                      '6'=>array('main_column', 'pwa_width'),
                      ),
        'hide' => array(),
        'img_src' => 'sprite-layouts.png',
        'img_height' => 289,
        'img_width' => 50,
        'default' =>  $this->get_param('default_layout'),
      ),
      'main_column' => array( 
        "name" => "main_column", 
        "title" => __("Main Column Width",'portfolio-gallery'), 
        'type' => 'text',
        "sanitize_type" => "sanitize_text_field",
        "description" => __("Width of the Main Column", 'portfolio-gallery'),
        'unit_symbol' => '%',
        'input_size' => '2',
        'default' => $this->get_param('main_column'),
      ),
      'pwa_width' => array( 
        "name" => "pwa_width", 
        "title" => __("Primary Widget Area width", 'portfolio-gallery'), 
        'type' => 'text',
        "sanitize_type" => "sanitize_text_field", 
        "description" => __("Width of the Primary Widget Area", 'portfolio-gallery'),
        'unit_symbol' => '%',
        'input_size' => '2',
        'default' => $this->get_param('pwa_width'),
      ),
    );

  }
 
}