| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- <?php if ( ! defined( 'ABSPATH' ) ) exit;
- function ninja_forms_sidebar_sorter($array, $sequence){
- $tmp = array();
- foreach($sequence as $s){
- foreach($array as $key => $a){
- $s = str_replace( 'ninja_forms_metabox_', '', $s );
- if($key == $s){
- $tmp[$key] = $a;
- unset( $array[$key] );
- break;
- }
- }
- }
- if( is_array( $array ) AND !empty( $array ) ){
- foreach( $array as $key => $a ){
- $tmp[$key] = $a;
- }
- }
- return $tmp;
- }
- function ninja_forms_display_sidebars($data){
- global $ninja_forms_sidebars;
- $current_tab = ninja_forms_get_current_tab();
- $current_page = esc_html( $_REQUEST['page'] );
- $opt = nf_get_settings();
- if( isset( $opt['sidebars'][$current_page][$current_tab] ) ){
- $order = $opt['sidebars'][$current_page][$current_tab];
- if ( !is_array ( $order ) ) {
- $order = array();
- }
- $ninja_forms_sidebars[$current_page][$current_tab] = ninja_forms_sidebar_sorter( $ninja_forms_sidebars[$current_page][$current_tab], $order );
- }
- $plugin_settings = nf_get_settings();
- ?>
- <div id="menu-settings-column" class="metabox-holder">
- <div id="side-sortables" class="meta-box-sortables ui-sortable">
- <?php
- if(isset($ninja_forms_sidebars[$current_page][$current_tab]) AND is_array($ninja_forms_sidebars[$current_page][$current_tab])){
- foreach($ninja_forms_sidebars[$current_page][$current_tab] as $slug => $sidebar){
- if((isset($opt['screen_options']['tab'][$current_tab]['sidebars'][$slug]['visible']) AND $opt['screen_options']['tab'][$current_tab]['sidebars'][$slug]['visible'] == 1) OR !isset($opt['screen_options']['tab'][$current_tab]['sidebars'][$slug]['visible'])){
- if ( isset ( $plugin_settings['metabox_state'][$current_page][$current_tab][$slug] ) ) {
- $state = $plugin_settings['metabox_state'][$current_page][$current_tab][$slug];
- } else {
- $state = '';
- }
- ?>
- <div id="ninja_forms_metabox_<?php echo $slug;?>" class="postbox">
- <h3 class="hndl">
- <span><?php _e($sidebar['name'], 'ninja-forms');?></span>
- </h3>
- <span class="item-controls">
- <a class="item-edit metabox-item-edit" id="edit_id" title="<?php _e('Edit Menu Item', 'ninja-forms'); ?>" href="#"><?php _e( 'Edit Menu Item' , 'ninja-forms'); ?></a>
- </span>
- <div class="inside" id="ninja_forms_sidebar_<?php echo $slug;?>" style="<?php echo $state;?>">
- <?php
- if(isset($sidebar['display_function']) AND !empty($sidebar['display_function'])){
- $sidebar_callback = $sidebar['display_function'];
- $arguments = func_get_args();
- array_shift($arguments); // We need to remove the first arg ($function_name)
- $arguments['slug'] = $slug;
- $arguments['data'] = $data;
- call_user_func_array($sidebar_callback, $arguments);
- }
- if(isset($sidebar['settings']) AND !empty($sidebar['settings'])){
- foreach($sidebar['settings'] as $option){
- if( isset( $option['p_class'] ) ){
- $p_class = $option['p_class'];
- }else{
- $p_class = '';
- }
- ?>
- <p class="field-controls <?php echo $p_class;?>">
- <?php
- if(isset($option['display_function']) AND !empty($option['display_function'])){
- call_user_func_array($option['display_function'], $arguments);
- }else{
- $name = $option['name'];
- if( isset( $option['default_value'] ) ){
- $value = $option['default_value'];
- }else{
- $value = '';
- }
- if( isset( $data[$name] ) ){
- $value = $data[$name];
- }
- if( isset( $option['class'] ) ){
- $class = $option['class'];
- }else{
- $class = '';
- }
- switch($option['type']){
- case 'checkbox':
- ?>
- <input type="hidden" name="<?php echo $name;?>" value="0">
- <input type="checkbox" name="<?php echo $name;?>" id="<?php echo $name;?>" value="1" <?php checked(1, $value);?>>
- <label for="<?php echo $name;?>"><?php _e($option['label'], 'ninja-forms');?></label>
- <?php
- break;
- case 'radio':
- ?>
- <label for="<?php echo $name;?>"><?php _e($option['label'], 'ninja-forms');?></label>
- <?php
- if(isset($option['options'])){
- $x = 0;
- foreach($option['options'] as $option){
- ?>
- <input type="radio" id="<?php echo $name.'_'.$x;?>" value="<?php echo $option['value'];?>" <?php checked($option['value'], $value);?> name="<?php echo $name;?>">
- <label for="<?php echo $name.'_'.$x;?>"><?php echo $option['name'];?></label>
- <?php
- $x++;
- }
- }
- break;
- case 'select':
- ?>
- <label for="<?php echo $name;?>"><?php _e($option['label'], 'ninja-forms');?></label>
- <select name="<?php echo $name;?>" id="<?php echo $name;?>">
- <?php
- if(isset($option['options'])){
- foreach($option['options'] as $option){
- ?>
- <option value="<?php echo $option['value'];?>" <?php selected($option['value'], $value);?>><?php echo $option['name'];?></option>
- <?php
- }
- }
- ?>
- </select>
- <?php
- break;
- case 'text':
- ?>
- <label for="<?php echo $name;?>"><?php _e($option['label'], 'ninja-forms');?></label>
- <input type="text" name="<?php echo $name;?>" id="<?php echo $name;?>" value="<?php echo $value;?>">
- <?php
- break;
- case 'textarea':
- ?>
- <label for="<?php echo $name;?>"><?php _e($option['label'], 'ninja-forms');?></label>
- <textarea name="<?php echo $name;?>" id="<?php echo $name;?>"><?php echo $value;?></textarea>
- <?php
- break;
- case 'submit':
- ?>
- <input type="submit" name="submit" id="" class="<?php echo $class;?>" value="<?php _e( 'View Submissions', 'ninja-forms' );?>">
- <?php
- break;
- }
- if(isset($option['help']) AND !empty($option['help'])){
- ?>
- <a href="#" class="tooltip">
- <img id="" class='ninja-forms-help-text' src="<?php echo NINJA_FORMS_URL;?>images/question-ico.gif" title="">
- <span>
- <img class="callout" src="<?php echo NINJA_FORMS_URL;?>/images/callout.gif" />
- <?php _e($option['help'], 'ninja-forms');?>
- </span>
- </a>
- <?php
- }
- if(isset($option['desc']) AND !empty($option['desc'])){
- ?>
- <span class="howto"><?php echo $option['desc'];?></span>
- <?php
- }
- }
- ?>
- </p>
- <?php
- }
- }
- ?>
- </div>
- </div>
- <?php
- }
- }
- }
- ?>
- </div>
- <?php
- }
- ?>
|