status = self::get_param( array( 'param' => 'form_type' ) ); parent::__construct( $args ); $this->screen->set_screen_reader_content( array( 'heading_list' => esc_html__( 'Forms list', 'formidable' ), ) ); } /** * @return void */ public function prepare_items() { global $wpdb, $per_page, $mode; $page = $this->get_pagenum(); $per_page = $this->get_items_per_page( 'formidable_page_formidable_per_page' ); $mode = self::get_param( array( 'param' => 'mode', 'default' => 'list', ) ); $orderby = self::get_param( array( 'param' => 'orderby', 'default' => 'name', ) ); $order = self::get_param( array( 'param' => 'order', 'default' => 'ASC', ) ); $start = self::get_param( array( 'param' => 'start', 'default' => ( $page - 1 ) * $per_page, ) ); $s_query = array( array( 'or' => 1, 'parent_form_id' => null, 'parent_form_id <' => 1, ), ); switch ( $this->status ) { case 'draft': $s_query['is_template'] = 0; $s_query['status'] = 'draft'; break; case 'trash': $s_query['status'] = 'trash'; break; default: $s_query['is_template'] = 0; $s_query['status !'] = 'trash'; break; } $s = self::get_param( array( 'param' => 's', 'sanitize' => 'sanitize_text_field', ) ); if ( $s != '' ) { preg_match_all( '/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches ); $search_terms = array_map( 'trim', $matches[0] ); foreach ( $search_terms as $term ) { $s_query[] = array( 'or' => true, 'name LIKE' => $term, 'description LIKE' => $term, 'created_at LIKE' => $term, 'form_key LIKE' => $term, 'id' => $term, ); unset( $term ); } } $this->items = FrmForm::getAll( $s_query, $orderby . ' ' . $order, $start . ',' . $per_page ); $total_items = FrmDb::get_count( 'frm_forms', $s_query ); $this->total_items = $total_items; $this->set_pagination_args( array( 'total_items' => $total_items, 'per_page' => $per_page, ) ); } /** * @return void */ public function no_items() { if ( $this->status === 'trash' ) { echo '

'; esc_html_e( 'No forms found in the trash.', 'formidable' ); ?> '; } else { $title = __( 'No Forms Found', 'formidable' ); include FrmAppHelper::plugin_path() . '/classes/views/frm-forms/_no_forms.php'; } } public function get_bulk_actions() { $actions = array(); if ( 'trash' === $this->status ) { if ( current_user_can( 'frm_edit_forms' ) ) { $actions['bulk_untrash'] = __( 'Restore', 'formidable' ); } if ( current_user_can( 'frm_delete_forms' ) ) { $actions['bulk_delete'] = __( 'Delete Permanently', 'formidable' ); } } elseif ( EMPTY_TRASH_DAYS && current_user_can( 'frm_delete_forms' ) ) { $actions['bulk_trash'] = __( 'Move to Trash', 'formidable' ); } elseif ( current_user_can( 'frm_delete_forms' ) ) { $actions['bulk_delete'] = __( 'Delete', 'formidable' ); } return $actions; } /** * @return void */ public function extra_tablenav( $which ) { if ( 'top' !== $which ) { return; } if ( 'trash' === $this->status && current_user_can( 'frm_delete_forms' ) ) { ?>

__( 'My Forms', 'formidable' ), 'draft' => __( 'Drafts', 'formidable' ), 'trash' => __( 'Trash', 'formidable' ), ); $links = array(); $counts = FrmForm::get_count(); $form_type = FrmAppHelper::simple_get( 'form_type', 'sanitize_title', 'published' ); if ( isset( $statuses[ $form_type ] ) ) { $counts->$form_type = $this->total_items; } $form_type = self::get_param( array( 'param' => 'form_type', 'default' => 'published', ) ); foreach ( $statuses as $status => $name ) { if ( $status == $form_type ) { $class = ' class="current"'; } else { $class = ''; } if ( $counts->{$status} || 'draft' !== $status ) { /* translators: %1$s: Status, %2$s: Number of items */ $links[ $status ] = '' . sprintf( __( '%1$s (%2$s)', 'formidable' ), $name, number_format_i18n( $counts->{$status} ) ) . ''; } unset( $status, $name ); } return $links; } /** * @param string $which * @return void */ public function pagination( $which ) { global $mode; parent::pagination( $which ); if ( 'top' === $which ) { $this->view_switcher( $mode ); } } /** * @param stdClass $item * @param string $style * @return string */ public function single_row( $item, $style = '' ) { global $frm_vars, $mode; // Set up the hover actions for this user $actions = array(); $edit_link = FrmForm::get_edit_link( $item->id ); $this->get_actions( $actions, $item, $edit_link ); $action_links = $this->row_actions( $actions ); // Set up the checkbox ( because the user is editable, otherwise its empty ) $checkbox = ''; $checkbox_label_text = sprintf( // translators: Form title __( 'Select %s', 'formidable' ), ! empty( $item->name ) ? $item->name : __( '(no title)', 'formidable' ) ); $checkbox .= ''; $r = ''; list( $columns, $hidden ) = $this->get_column_info(); $format = 'Y/m/d'; if ( 'list' !== $mode ) { $format .= ' \<\b\r \/\> g:i:s a'; } foreach ( $columns as $column_name => $column_display_name ) { $class = $column_name . ' column-' . $column_name . ( 'name' === $column_name ? ' post-title page-title column-title' : '' ); $style = ''; if ( in_array( $column_name, $hidden, true ) ) { $class .= ' frm_hidden'; } if ( $column_name === 'name' ) { $class .= ' column-primary'; } $class = 'class="' . esc_attr( $class ) . '"'; $data_colname = ' data-colname="' . esc_attr( $column_display_name ) . '"'; $attributes = $class . $style . $data_colname; switch ( $column_name ) { case 'cb': $r .= '' . $checkbox . ''; break; case 'id': case 'form_key': $val = $item->{$column_name}; break; case 'name': $val = $this->get_form_name( $item, $actions, $edit_link, $mode ); $val .= $action_links; break; case 'created_at': $date = gmdate( $format, strtotime( $item->created_at ) ); $val = '' . $date . ''; break; case 'entries': if ( isset( $item->options['no_save'] ) && $item->options['no_save'] ) { $val = FrmAppHelper::icon_by_class( 'frmfont frm_forbid_icon frm_bstooltip', array( 'title' => __( 'Saving entries is disabled for this form', 'formidable' ), 'echo' => false, ) ); } else { $text = FrmEntry::getRecordCount( $item->id ); $val = current_user_can( 'frm_view_entries' ) ? '' . $text . '' : $text; unset( $text ); } break; default: if ( method_exists( $this, 'column_' . $column_name ) ) { $val = call_user_func( array( $this, 'column_' . $column_name ), $item ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } break; }//end switch if ( isset( $val ) ) { $r .= ""; $r .= $val; $r .= ''; } unset( $val ); }//end foreach $r .= ''; return $r; } /** * Get the HTML for the Actions column in the form list. * This includes multiple icons for triggering the embed modal, the visual styler, and an active landing page. * * @since 6.0 * * @param stdClass $form * @return string */ protected function column_shortcode( $form ) { $val = '' . FrmAppHelper::icon_by_class( 'frmfont frm_code_icon', array( 'echo' => false ) ) . ''; $val .= $this->column_style( $form ); $val = apply_filters( 'frm_form_list_actions', $val, array( 'form' => $form ) ); // Remove the space hard coded in Landing pages. $val = str_replace( ' ', '', $val ); $val = '
' . $val . '
'; return $val; } /** * Get the HTML for the Style column in the form list. * * @since 6.0 * * @param stdClass $form * @return string */ protected function column_style( $form ) { $style_setting = isset( $form->options['custom_style'] ) ? $form->options['custom_style'] : ''; $frm_settings = FrmAppHelper::get_settings(); if ( $style_setting === '0' || 'none' === $frm_settings->load_style ) { // Don't show a link if styling is off. return ''; } $style = FrmStylesController::get_form_style( $form ); if ( ! $style ) { // Do a second pass to avoid null values. $frm_style = new FrmStyle( 'default' ); $style = $frm_style->get_one(); } $href = FrmStylesHelper::get_edit_url( $style, $form->id ); return '' . FrmAppHelper::icon_by_class( 'frmfont frm_pallet_icon', array( 'echo' => false ) ) . ''; } /** * @param array $actions * @param object $item * @param string $edit_link * * @return void */ private function get_actions( &$actions, $item, $edit_link ) { $new_actions = FrmFormsHelper::get_action_links( $item->id, $item ); foreach ( $new_actions as $link => $action ) { $new_actions[ $link ] = FrmFormsHelper::format_link_html( $action, 'short' ); } if ( 'trash' === $this->status ) { $actions = $new_actions; return; } if ( current_user_can( 'frm_edit_forms' ) ) { $actions['frm_edit'] = '' . __( 'Edit', 'formidable' ) . ''; $actions['frm_settings'] = '' . __( 'Settings', 'formidable' ) . ''; } $actions = array_merge( $actions, $new_actions ); $actions['view'] = '' . __( 'Preview', 'formidable' ) . ''; } /** * @param object $item * @param array $actions * @param string $edit_link * @param string $mode * * @return string */ private function get_form_name( $item, $actions, $edit_link, $mode = 'list' ) { $form_name = $item->name; if ( trim( $form_name ) == '' ) { $form_name = __( '(no title)', 'formidable' ); } $form_name = FrmAppHelper::kses( $form_name ); if ( 'excerpt' != $mode ) { $form_name = FrmAppHelper::truncate( $form_name, 50 ); } $val = ''; if ( 'trash' === $this->status ) { $val .= $form_name; } else { $val .= '' . FrmAppHelper::kses( $form_name ) . ' '; } $this->add_draft_label( $item, $val ); $val .= ''; $this->add_form_description( $item, $val ); return $val; } /** * @param object $item * @param string $val * * @return void */ private function add_draft_label( $item, &$val ) { if ( 'draft' === $item->status && 'draft' != $this->status ) { $val .= ' - ' . esc_html__( 'Draft', 'formidable' ) . ''; } } /** * @param object $item * @param string $val * * @return void */ private function add_form_description( $item, &$val ) { global $mode; if ( 'excerpt' === $mode ) { $val .= FrmAppHelper::truncate( strip_tags( $item->description ), 50 ); } } /** * @return string */ protected function confirm_bulk_delete() { return __( 'ALL selected forms and their entries will be permanently deleted. Want to proceed?', 'formidable' ); } }