git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@3 c22fe52d-42d7-ba4f-95f7-33effcf65713
126 lines
2.9 KiB
PHP
126 lines
2.9 KiB
PHP
<?php
|
|
return array(
|
|
"name" => __("Price", 'wpv') ,
|
|
"value" => "price",
|
|
"options" => array(
|
|
array(
|
|
"name" => __("Title", 'wpv') ,
|
|
"id" => "title",
|
|
"default" => '',
|
|
"type" => "text",
|
|
) ,
|
|
array(
|
|
"name" => __("Price", 'wpv') ,
|
|
"id" => "price",
|
|
"default" => '',
|
|
"type" => "text"
|
|
) ,
|
|
array(
|
|
"name" => __("Currency", 'wpv') ,
|
|
"id" => "currency",
|
|
"default" => '',
|
|
"type" => "text"
|
|
) ,
|
|
array(
|
|
"name" => __("Duration", 'wpv') ,
|
|
"id" => "duration",
|
|
"default" => '',
|
|
"type" => "text"
|
|
) ,
|
|
array(
|
|
"name" => __("Summary", 'wpv') ,
|
|
"id" => "summary",
|
|
"default" => '',
|
|
"type" => "text"
|
|
) ,
|
|
array(
|
|
"name" => __("Description", 'wpv') ,
|
|
"id" => "description",
|
|
"default" => '',
|
|
"type" => "textarea"
|
|
) ,
|
|
array(
|
|
"name" => __("Button text", 'wpv') ,
|
|
"id" => "button_text",
|
|
"default" => '',
|
|
"type" => "text"
|
|
) ,
|
|
array(
|
|
"name" => __("Button link", 'wpv') ,
|
|
"id" => "button_link",
|
|
"default" => '',
|
|
"type" => "text"
|
|
) ,
|
|
array(
|
|
"name" => __("Text alignment", 'wpv') ,
|
|
"id" => "text_align",
|
|
"default" => 'justify',
|
|
"type" => "select",
|
|
'options' => array(
|
|
'justify' => 'justify',
|
|
'left' => 'left',
|
|
'center' => 'center',
|
|
'right' => 'right',
|
|
)
|
|
) ,
|
|
array(
|
|
"name" => __("Title size", 'wpv') ,
|
|
"id" => "title_size",
|
|
"default" => '18',
|
|
"type" => "range",
|
|
'min' => 0,
|
|
'max' => 50,
|
|
) ,
|
|
array(
|
|
"name" => __("Title color", 'wpv') ,
|
|
'desc' => __('Please click the Preview button to see its effect'),
|
|
"id" => "title_color",
|
|
"default" => '',
|
|
"type" => "color"
|
|
) ,
|
|
array(
|
|
"name" => __("Title background", 'wpv') ,
|
|
'desc' => __('Please click the Preview button to see its effect'),
|
|
"id" => "title_background",
|
|
"default" => 'transparent',
|
|
"type" => "color"
|
|
) ,
|
|
array(
|
|
"name" => __("Price color", 'wpv') ,
|
|
'desc' => __('Please click the Preview button to see its effect'),
|
|
"id" => "price_color",
|
|
"default" => '',
|
|
"type" => "color"
|
|
) ,
|
|
array(
|
|
"name" => __("Price background", 'wpv') ,
|
|
'desc' => __('Please click the Preview button to see its effect'),
|
|
"id" => "price_background",
|
|
"default" => '',
|
|
"type" => "color"
|
|
) ,
|
|
array(
|
|
"name" => __("Price size", 'wpv') ,
|
|
"id" => "price_size",
|
|
"default" => 25,
|
|
"type" => "range",
|
|
'min' => 8,
|
|
'max' => 45,
|
|
) ,
|
|
array(
|
|
"name" => __("Description color", 'wpv') ,
|
|
'desc' => __('Please click the Preview button to see its effect'),
|
|
"id" => "description_color",
|
|
"default" => '',
|
|
"type" => "color"
|
|
) ,
|
|
array(
|
|
"name" => __("Description background", 'wpv') ,
|
|
'desc' => __('Please click the Preview button to see its effect'),
|
|
"id" => "description_background",
|
|
"default" => '',
|
|
"type" => "color"
|
|
) ,
|
|
) ,
|
|
);
|