Server IP : 172.67.216.182 / Your IP : 108.162.226.158 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/coircraft.com/wp-content/plugins/caldera-forms/classes/ |
Upload File : |
<?php class Caldera_Forms_Widget extends WP_Widget { /** * Create widget * * @since unknown */ function __construct() { // Instantiate the parent object parent::__construct( false, __('Caldera Form', 'caldera-forms' ) ); /** * Runs after Caldera Forms widget is initialized * * @since 1.4.0 */ do_action( 'caldera_forms_widget_init' ); } /** * Widget output * * @since unknown * * @param array $args * @param array $instance */ function widget( $args, $instance ) { if(!empty($instance['form'])){ extract($args, EXTR_SKIP); echo $before_widget; $title = empty($instance['title']) ? ' ' : apply_filters( 'widget_title', $instance['title']); if ( !empty( $title ) ) { echo $before_title . $title . $after_title; }; echo Caldera_Forms::render_form( $instance[ 'form' ] ); echo $after_widget; } } /** * Update widget settings * * @since unknown * * @param array $new_instance * @param array $old_instance * * @return array */ function update( $new_instance, $old_instance ) { // Save widget options return $new_instance; } /** * Widget UI form * * @since unknown * * @param array $instance */ function form( $instance ) { $instance = wp_parse_args( (array) $instance, array( 'title' => '' ) ); $title = strip_tags($instance['title']); do_action( 'caldera_forms_widget_form_start', $instance ); echo "<p><label for=\" " . $this->get_field_id('title') . "\">" . __('Title', 'caldera-forms') . ": <input class=\"widefat\" id=\"" . $this->get_field_id('title') . "\" name=\"" . $this->get_field_name('title') . "\" type=\"text\" value=\"" . esc_attr($title). "\" /></label></p>\r\n"; // get forms $forms = Caldera_Forms_Forms::get_forms( true ); echo "<p><label for=\" " . $this->get_field_id('title') . "\">" . __('Form', 'caldera-forms') . ": </label><select style=\"width:100%;\" name=\"" . $this->get_field_name('form') . "\">\r\n"; echo "<option value=\"\"></option>\r\n"; if(!empty($forms)){ foreach($forms as $formid=>$form){ $sel = ""; if(!empty($instance['form'])){ if($instance['form'] == $formid){ $sel = ' selected="selected"'; } } echo "<option value=\"" . $formid . "\"".$sel.">" . $form['name'] ."</option>\r\n"; } } echo "</select></p>\r\n"; do_action( 'caldera_forms_widget_form_end', $instance, $this ); } } function caldera_forms_register_widget() { if( ! did_action( 'caldera_forms_widget_init' ) ){ register_widget( 'Caldera_Forms_Widget' ); } } add_action( 'widgets_init', 'caldera_forms_register_widget' );