PluginProbe
PixCodes / 2.3.8
PixCodes v2.3.8
2.3.9 trunk 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8
pixcodes / params / tabs.php

tabs.php in PixCodes 2.3.8, at params/tabs.php

28 lines 992 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( '-1' );
4 }
5
6 $class= "span12";
7
8 if ( isset($param['admin_class'] ) ) $class = $param['admin_class']; ?>
9
10 <div class="<?php echo esc_attr( $class ); ?> param-tabs" >
11 <ul class="tabs-heads">
12 <li data-index="1"><a href="#t1">Tab 1</a></li>
13 <li data-index="0"><a href="#t-last">New Tab</a></li>
14 </ul>
15
16 <div id="t1" class="tab" data-tab="1">
17 <input type="text" class="tab_title" placeholder="Title"/>
18 <input type="text" class="tab_icon"placeholder="Font Awesome Icon Class" /><a class="tip_icon" title="See the list with all icons classes" href="http://fortawesome.github.io/Font-Awesome/icons/" target="_blank"><i class="icon-external-link"></i></a>
19 <textarea class="tab_content" placeholder="Content" rows="10"></textarea>
20 </div>
21
22 <div id="t-last" class="tab" data-tab="0">
23 <p>Plast</p>
24 </div>
25
26 </div>
27 <input type="hidden" name="<?php echo esc_attr( $param['param_key'] ); ?>" />
28