Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php if ( ! defined( 'FW' ) ) {
- die( 'Forbidden' );
- }
- $options = array(
- 'style' => array(
- 'type' => 'select',
- 'label' => __('Box Style', 'fw'),
- 'choices' => array(
- 'fw-iconbox-1' => __('Icon above title', 'fw'),
- 'fw-iconbox-2' => __('Icon in line with title', 'fw')
- )
- ),
- 'icon' => array(
- 'type' => 'icon',
- 'label' => __('Choose an Icon', 'fw'),
- ),
- 'title' => array(
- 'type' => 'text',
- 'label' => __( 'Title of the Box', 'fw' ),
- ),
- 'content' => array(
- 'type' => 'textarea',
- 'label' => __( 'Content', 'fw' ),
- 'desc' => __( 'Enter the desired content', 'fw' ),
- ),
- 'custom_class' => array(
- 'type' => 'text',
- 'label' => 'Ваш класс',
- 'desc' => 'К этому классу будут назначаться стили',
- ),
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement