/home/fdhrevqn/public_html/wp-content/plugins.disabled/fox-framework/addons/heading/params.php
<?php
$params = [];
$params[ 'title' ] = array(
    'type' => 'text',
    'title' => 'Title',
    'std' => 'Enter title here',

    'section' => 'heading',
    'section_title' => 'Heading',
);

$params[ 'title_tag' ] = array(
    'type' => 'select',
    'title' => 'Title tag',
    'options' => [
        'h1' => 'H1',
        'h2' => 'H2',
        'h3' => 'H3',
        'h4' => 'H4',
        'p' => 'p',
    ],
    'std' => 'h2',
);

$params[ 'title_color' ] = array(
    'type' => 'color',
    'title' => 'Custom title color',
);

$params[ 'title_size' ] = array(
    'type' => 'select',
    'options' => [
        'large' => 'Large',
        'medium' => 'Medium',
        'normal' => 'Normal',
        'small' => 'Small',
        'tiny' => 'Tiny',
        'supertiny' => 'Supertiny',
    ],
    'std' => 'large',
    'title' => 'Title size',
);

$params[ 'title_text_transform' ] = array(
    'type' => 'select',
    'options' => [
        '' => 'Default',
        'none' => 'None',
        'uppercase' => 'UPPERCASE',
        'lowercase' => 'lowercase',
        'capitalize' => 'Capitalize',
    ],
    'std' => '',
    'title' => 'Text transform',
);

$params[ 'line' ] = array(
    'type' => 'select',
    'options' => [
        '' => 'None',
        '1px' => 'Solid 1px',
        '2px' => 'Solid 2px',
        '3px' => 'Solid 3px',
        '4px' => 'Solid 4px',
        'dashed' => 'Dashed',
        'double' => 'Double',
        'wave' => 'Wave',
    ],
    'std' => '',
    'title' => 'Horizontal Line',
);

$params[ 'subtitle' ] = array(
    'type' => 'text',
    'title' => 'Subtitle',
);

$params[ 'subtitle_tag' ] = array(
    'options' => [
        'h2' => 'H2',
        'h3' => 'H3',
        'h4' => 'H4',
        'h5' => 'H5',
        'p' => 'p',
    ],
    'std' => 'h3',
    'type' => 'select',
    'title' => 'Subtitle tag',
);

$params[ 'subtitle_color' ] = array(
    'type' => 'color',
    'title' => 'Custom subtitle color',
);

$params[ 'image' ] = array(
    'type' => 'media',
    'title' => 'Heading image',
);

$params[ 'image_width' ] = array(
    'type' => 'text',
    'title' => 'Image Width',
);

$params[ 'align' ] = array(
    'title' => 'Align',
    'type' => 'select',
    'options' => array(
        'left' => 'Left',
        'center' => 'Center',
        'right' => 'Right',
    ),
    'std' => 'center',
);

$params[ 'url' ] = array(
    'type' => 'text',
    'title' => 'URL',
);

$params[ 'url_target' ] = array(
    'type' => 'select',
    'title' => 'Open link in',
    'options' => [
        '_self' => 'Current tab',
        '_blank' => 'New tab',
    ],
    'std' => '_self',
);

$params[ 'url_text' ] = array(
    'type' => 'text',
    'title' => 'Link text',
);

$params[ 'url_position' ] = array(
    'type' => 'select',
    'options' => [
        'next'  => 'Next to title',
        'right' => 'Right side',
    ],
    'std' => 'right',
    'title' => 'Link position',
);

$params[ 'extra_class' ] = array(
    'title' => 'Extra Class',
    'type' => 'text',
    'desc' => 'Enter your custom CSS class',
);