Server IP : 172.67.216.182 / Your IP : 162.158.163.121 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/audiomatrix.in/wp-content/plugins/essential-grid/admin/views/ |
Upload File : |
<?php /** * @package Essential_Grid * @author ThemePunch <[email protected]> * @link http://www.themepunch.com/essential/ * @copyright 2016 ThemePunch * @since 1.0.6 */ if( !defined( 'ABSPATH') ) exit(); ?> <h2 class="topheader"><?php _e('Custom Widgets', EG_TEXTDOMAIN); ?></h2> <div id="eg-grid-widget-areas-wrapper"> <?php $wa = new Essential_Grid_Widget_Areas(); $sidebars = $wa->get_all_sidebars(); if(is_array($sidebars) && !empty($sidebars)){ foreach($sidebars as $handle => $name){ ?> <div class="postbox eg-postbox" style="width:100%;min-width:500px"> <h3 class="box-closed"><span style="font-weight:400"><?php _e('Handle:', EG_TEXTDOMAIN); ?></span><span>eg-<?php echo $handle; ?> </span><div class="postbox-arrow"></div></h3> <div class="inside" style="display:none;padding:0px !important;margin:0px !important;height:100%;position:relative;background:#ebebeb"> <input type="hidden" name="esg-widget-area-handle[]" value="<?php echo $handle; ?>" /> <div class="eg-custommeta-row"> <div class="eg-cus-row-l"><label><?php _e('Name:', EG_TEXTDOMAIN); ?></label><input type="text" name="esg-widget-area-name[]" value="<?php echo @$name; ?>"></div> </div> <div class="eg-widget-area-save-wrap-settings"> <a class="button-primary revblue eg-widget-area-edit" href="javascript:void(0);"><?php _e('Edit', EG_TEXTDOMAIN); ?></a> <a class="button-primary revred eg-widget-area-delete" href="javascript:void(0);"><?php _e('Remove', EG_TEXTDOMAIN); ?></a> </div> </div> </div> <?php } } ?> </div> <a class="button-primary revblue" id="eg-widget-area-add" href="javascript:void(0);"><?php _e('Add New Widget Area', EG_TEXTDOMAIN); ?></a> <?php Essential_Grid_Dialogs::widget_areas_dialog(); ?> <script type="text/javascript"> jQuery(function(){ AdminEssentials.initWidgetAreas(); }); </script>