<?php if ( ! defined( 'ABSPATH' ) ) { die( 'You are not allowed to call this page directly.' ); } class FrmFormsListHelper extends FrmListHelper { /** * @var string */ public $status = ''; public $total_items = 0; public function __construct( $args ) { $this->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 $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', ) ); FrmAppController::apply_saved_sort_preference( $orderby, $order ); $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 '<p>'; esc_html_e( 'No forms found in the trash.', 'formidable' ); ?> <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable' ) ); ?>"> <?php esc_html_e( 'See all forms.', 'formidable' ); ?> </a> <?php echo '</p>'; } 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; } /** * @param string $which * * @return void */ public function extra_tablenav( $which ) { if ( 'top' !== $which ) { return; } if ( 'trash' === $this->status && current_user_can( 'frm_delete_forms' ) ) { ?> <div class="alignleft actions frm_visible_overflow"> <?php submit_button( __( 'Empty Trash', 'formidable' ), 'apply', 'delete_all', false ); ?> </div> <?php } } /** * @return array */ public function get_views() { $statuses = array( 'published' => __( '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 ) { $class = $status == $form_type ? ' class="current"' : ''; // phpcs:ignore Universal.Operators.StrictComparisons if ( $counts->{$status} || 'draft' !== $status ) { /* translators: %1$s: Status, %2$s: Number of items */ $links[ $status ] = '<a href="' . esc_url( '?page=formidable&form_type=' . $status ) . '" ' . $class . '>' . sprintf( __( '%1$s <span class="count">(%2$s)</span>', 'formidable' ), $name, number_format_i18n( $counts->{$status} ) ) . '</a>'; // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong } 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 $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 = '<input type="checkbox" name="item-action[]" id="cb-item-action-' . absint( $item->id ) . '" value="' . esc_attr( $item->id ) . '" />'; $checkbox_label_text = sprintf( // translators: Form title __( 'Select %s', 'formidable' ), ! empty( $item->name ) ? $item->name : FrmFormsHelper::get_no_title_text() ); $checkbox .= '<label for="cb-item-action-' . absint( $item->id ) . '"><span class="screen-reader-text">' . esc_html( $checkbox_label_text ) . '</span></label>'; $r = '<tr id="item-action-' . absint( $item->id ) . '"' . $style . '>'; 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 .= '<th scope="row" class="check-column">' . $checkbox . '</th>'; 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 = '<abbr title="' . esc_attr( gmdate( 'Y/m/d g:i:s A', strtotime( $item->created_at ) ) ) . '">' . $date . '</abbr>'; break; case 'entries': if ( ! empty( $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' ) ? '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-entries&form=' . $item->id ) ) . '">' . $text . '</a>' : $text; // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong 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 .= "<td $attributes>"; $r .= $val; $r .= '</td>'; } unset( $val ); }//end foreach return $r . '</tr>'; } /** * 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 = '<a href="#" class="frm-embed-form" role="button" aria-label="' . esc_attr__( 'Embed Form', 'formidable' ) . '">' . FrmAppHelper::icon_by_class( 'frmfont frm_code_icon', array( 'echo' => false ) ) . '</a>'; // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong $val .= $this->column_style( $form ); $val .= $this->column_views( $form ); $val = apply_filters( 'frm_form_list_actions', $val, array( 'form' => $form ) ); // Remove the space hard coded in Landing pages. $val = str_replace( '&nbsp;', '', $val ); return '<div>' . $val . '</div>'; } /** * 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 = $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 '<a href="' . esc_url( $href ) . '" title="' . esc_attr( $style->post_title ) . '">' . FrmAppHelper::icon_by_class( 'frmfont frm_pallet_icon', array( 'echo' => false ) ) . '</a>'; // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong } /** * Generate the HTML for the form Views page. * * @since 6.19 * * @param stdClass $form Form object. * * @return string */ protected function column_views( $form ) { $attributes = array( 'href' => admin_url( 'admin.php?page=formidable-views&form=' . absint( $form->id ) . '&show_nav=1' ), 'title' => __( 'Link to list of all views for this form.', 'formidable' ), 'target' => '_blank', ); return '<a ' . FrmAppHelper::array_to_html_params( $attributes ) . '> ' . FrmAppHelper::icon_by_class( 'frmfont frm_eye_icon', array( 'echo' => false ) ) . '</a>'; } /** * @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'] = '<a href="' . esc_url( $edit_link ) . '">' . __( 'Edit', 'formidable' ) . '</a>'; $actions['frm_settings'] = '<a href="' . esc_url( '?page=formidable&frm_action=settings&id=' . $item->id ) . '">' . __( 'Settings', 'formidable' ) . '</a>'; } $actions = array_merge( $actions, $new_actions ); $actions['view'] = '<a href="' . esc_url( FrmFormsHelper::get_direct_link( $item->form_key, $item ) ) . '" target="_blank">' . __( 'Preview', 'formidable' ) . '</a>'; } /** * @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 ( is_null( $form_name ) || trim( $form_name ) === '' ) { $form_name = FrmFormsHelper::get_no_title_text(); } $form_name = FrmAppHelper::kses( $form_name ); if ( 'excerpt' !== $mode ) { $form_name = FrmAppHelper::truncate( $form_name, 50 ); } $val = '<strong>'; if ( 'trash' === $this->status ) { $val .= $form_name; } else { $val .= '<a href="' . esc_url( isset( $actions['frm_edit'] ) ? $edit_link : FrmFormsHelper::get_direct_link( $item->form_key, $item ) ) . '" class="row-title">' . FrmAppHelper::kses( $form_name ) . '</a> '; // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong } $this->add_draft_label( $item, $val ); $val .= '</strong>'; $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 .= ' - <span class="post-state">' . esc_html__( 'Draft', 'formidable' ) . '</span>'; } } /** * @param object $item * @param string $val * * @return void */ private function add_form_description( $item, &$val ) { global $mode; if ( 'excerpt' === $mode && ! is_null( $item->description ) ) { $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' ); } }