public static function pdfdisplay($attributes)
 {
     $atts = shortcode_atts(array('form_id' => '', 'columns' => '', 'action' => 'view', 'show' => 'user', 'text' => 'View PDF', 'empty' => __('There were no entries found for this form', 'pdfextended'), 'payment' => 0, 'template' => '', 'pdf' => true, 'edit' => 'false', 'restricted_fields' => '', 'hidden_fields' => ''), $attributes);
     /*
      * Validate user attributes
      */
     $atts = self::validate_attributes($atts);
     /*
      * Check if we are allowing 'editing' of entries and include and output the edit HTML
      */
     if ($atts['edit'] === true) {
         $class = new GFPDFE_Entry_Edit_Logic($atts);
         $edit_html = $class->shortcode_init();
         if ($edit_html !== false) {
             return $edit_html;
         }
     }
     /*
      * Generate our list
      */
     return self::generate_html($atts);
 }