/home/desid573/verdenaturopathy.com.au/wp-content/plugins/wp-pagenavi/scb
NameSizeModeActions
AdminPage.php127590644editdlrm
BoxesPage.php72360644editdlrm
composer.json6310644editdlrm
Cron.php49980644editdlrm
Forms.php220530644editdlrm
Hooks.php22930644editdlrm
load-composer.php2100644editdlrm
load.php22750644editdlrm
Options.php39090644editdlrm
PostMetabox.php70710644editdlrm
Table.php12420644editdlrm
Util.php102970644editdlrm
Widget.php26680644editdlrm
Edit: /home/desid573/verdenaturopathy.com.au/wp-content/plugins/wp-pagenavi/scb/Widget.php (2668B)
defaults ); extract( $args ); echo $before_widget; $title = apply_filters( 'widget_title', isset( $instance['title'] ) ? $instance['title'] : '', $instance, $this->id_base ); if ( ! empty( $title ) ) { echo $before_title . $title . $after_title; } $this->content( $instance ); echo $after_widget; } /** * This is where the actual widget content goes. * * @param array $instance The settings for the particular instance of the widget. * * @return void */ protected function content( $instance ) { } //_____HELPER METHODS_____ /** * Generates a input form field. * * @param array $args * @param array $formdata (optional) * * @return string */ protected function input( $args, $formdata = array() ) { $prefix = array( 'widget-' . $this->id_base, $this->number ); $form = new scbForm( $formdata, $prefix ); // Add default class if ( ! isset( $args['extra'] ) && 'text' == $args['type'] ) { $args['extra'] = array( 'class' => 'widefat' ); } // Add default label position if ( ! in_array( $args['type'], array( 'checkbox', 'radio' ) ) && empty( $args['desc_pos'] ) ) { $args['desc_pos'] = 'before'; } $name = $args['name']; if ( ! is_array( $name ) && '[]' == substr( $name, -2 ) ) { $name = array( substr( $name, 0, -2 ), '' ); } $args['name'] = $name; return $form->input( $args ); } }