git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@3 c22fe52d-42d7-ba4f-95f7-33effcf65713
52 lines
1.1 KiB
PHP
52 lines
1.1 KiB
PHP
<?php
|
|
return array(
|
|
"name" => __("Slogan", 'wpv') ,
|
|
"value" => "slogan",
|
|
"options" => array(
|
|
array(
|
|
"name" => __("Text", 'wpv') ,
|
|
"id" => "text",
|
|
"default" => '',
|
|
"type" => "textarea",
|
|
) ,
|
|
array(
|
|
"name" => __("Button text", 'wpv') ,
|
|
"id" => "button_text",
|
|
"default" => '',
|
|
"type" => "text"
|
|
) ,
|
|
array(
|
|
"name" => __("Button link", 'wpv') ,
|
|
"id" => "link",
|
|
"default" => '',
|
|
"type" => "text"
|
|
) ,
|
|
array(
|
|
"name" => __("Use 'carved' button", 'wpv') ,
|
|
"id" => "carved",
|
|
"default" => false,
|
|
"type" => "toggle"
|
|
) ,
|
|
array(
|
|
"name" => __("No padding", 'wpv') ,
|
|
"id" => "nopadding",
|
|
"default" => false,
|
|
"type" => "toggle"
|
|
) ,
|
|
array(
|
|
'name' => __('Background', 'wpv') ,
|
|
'desc' => __('Please click the Preview button to see its effect'),
|
|
'id' => 'background',
|
|
'type' => 'color',
|
|
'default' => '#ededed'
|
|
) ,
|
|
array(
|
|
'name' => __('Text color', 'wpv') ,
|
|
'desc' => __('Please click the Preview button to see its effect'),
|
|
'id' => 'text_color',
|
|
'type' => 'color',
|
|
'default' => '#333333'
|
|
) ,
|
|
) ,
|
|
);
|