/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
pods
/
components
/
Builder
/
modules
/
form
/
Upload File
HOME
<?php /** * @package Pods\Components * @subpackage Builder */ if ( ! class_exists( 'LayoutModule' ) ) { return; } if ( ! class_exists( 'PodsBuilderModuleForm' ) ) { /** * Class PodsBuilderModuleForm */ class PodsBuilderModuleForm extends LayoutModule { public $_name = ''; public $_var = 'pods-builder-form'; public $_description = ''; public $_editor_width = 500; public $_can_remove_wrappers = true; /** * Register the Module */ public function __construct() { $this->_name = __( 'Pods - Form', 'pods' ); $this->_description = __( 'Display a form for creating and editing Pod items', 'pods' ); $this->module_path = dirname( __FILE__ ); $this->LayoutModule(); } /** * Set default variables * * @param $defaults * * @return mixed */ public function _get_defaults( $defaults ) { $new_defaults = array( 'pod_type' => '', 'slug' => '', 'fields' => '', 'label' => __( 'Submit', 'pods' ), 'thank_you' => '', 'sidebar' => 'none', ); return ITUtility::merge_defaults( $new_defaults, $defaults ); } /** * Output something before the table form * * @param object $form Form class * @param bool $results */ public function _before_table_edit( $form, $results = true ) { ?> <p><?php echo $this->_description; ?></p> <?php } /** * Output something at the start of the table form * * @param object $form Form class * @param bool $results */ public function _start_table_edit( $form, $results = true ) { $api = pods_api(); $all_pods = $api->load_pods( array( 'names' => true ) ); $pod_types = array(); foreach ( $all_pods as $pod_name => $pod_label ) { $pod_types[ $pod_name ] = $pod_label . ' (' . $pod_name . ')'; } ?> <tr> <td valign="top"> <label for="pod_type"><?php _e( 'Pod', 'pods' ); ?></label> </td> <td> <?php if ( 0 < count( $all_pods ) ) { $form->add_drop_down( 'pod_type', $pod_types ); } else { echo '<strong class="red">' . __( 'None Found', 'pods' ) . '</strong>'; } ?> </td> </tr> <tr> <td valign="top"> <label for="slug"><?php _e( 'Slug or ID', 'pods' ); ?></label> </td> <td> <?php $form->add_text_box( 'slug' ); ?> </td> </tr> <tr> <td valign="top"> <label for="fields"><?php _e( 'Fields (comma-separated)', 'pods' ); ?></label> </td> <td> <?php $form->add_text_box( 'fields' ); ?> </td> </tr> <tr> <td valign="top"> <label for="label"><?php _e( 'Submit Label', 'pods' ); ?></label> </td> <td> <?php $form->add_text_box( 'label' ); ?> </td> </tr> <tr> <td valign="top"> <label for="thank_you"><?php _e( 'Thank You URL upon submission', 'pods' ); ?></label> </td> <td> <?php $form->add_text_box( 'thank_you' ); ?> </td> </tr> <?php } /** * Module Output * * @param $fields */ public function _render( $fields ) { $args = array( 'name' => trim( (string) pods_var_raw( 'pod_type', $fields['data'], '' ) ), 'slug' => trim( (string) pods_var_raw( 'slug', $fields['data'], '' ) ), 'fields' => trim( (string) pods_var_raw( 'fields', $fields['data'], '' ) ), 'label' => trim( (string) pods_var_raw( 'label', $fields['data'], __( 'Submit', 'pods' ), null, true ) ), 'thank_you' => trim( (string) pods_var_raw( 'thank_you', $fields['data'], '' ) ), 'form' => 1, ); if ( 0 < strlen( $args['name'] ) ) { echo pods_shortcode( $args, ( isset( $content ) ? $content : null ) ); } } } }//end if new PodsBuilderModuleForm();