@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | $page = $this->get_pagenum(); |
| 27 | 27 | $per_page = $this->get_items_per_page( 'formidable_page_formidable_per_page' ); |
| 28 | 28 | |
| 29 | - $start = ( isset( $_REQUEST['start'] ) ) ? $_REQUEST['start'] : (( $page - 1 ) * $per_page); |
|
| 29 | + $start = ( isset( $_REQUEST['start'] ) ) ? $_REQUEST['start'] : ( ( $page - 1 ) * $per_page ); |
|
| 30 | 30 | |
| 31 | 31 | $s_query = array(); |
| 32 | 32 | $s_query[] = array( 'or' => 1, 'parent_form_id' => null, 'parent_form_id <' => 1 ); |
@@ -48,15 +48,15 @@ discard block |
||
| 48 | 48 | break; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - $s = isset( $_REQUEST['s'] ) ? stripslashes($_REQUEST['s']) : ''; |
|
| 51 | + $s = isset( $_REQUEST['s'] ) ? stripslashes( $_REQUEST['s'] ) : ''; |
|
| 52 | 52 | if ( $s != '' ) { |
| 53 | - preg_match_all('/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches); |
|
| 54 | - $search_terms = array_map('trim', $matches[0]); |
|
| 53 | + preg_match_all( '/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches ); |
|
| 54 | + $search_terms = array_map( 'trim', $matches[0] ); |
|
| 55 | 55 | foreach ( (array) $search_terms as $term ) { |
| 56 | 56 | $s_query[] = array( |
| 57 | 57 | 'or' => true, 'name LIKE' => $term, 'description LIKE' => $term, 'created_at LIKE' => $term, |
| 58 | 58 | ); |
| 59 | - unset($term); |
|
| 59 | + unset( $term ); |
|
| 60 | 60 | } |
| 61 | 61 | } |
| 62 | 62 | |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | _e( 'No Templates Found.', 'formidable' ) ?> |
| 75 | 75 | <br/><br/><?php _e( 'To add a new template:', 'formidable' ) ?> |
| 76 | 76 | <ol><li><?php printf( __( 'Create a new %1$sform%2$s.', 'formidable' ), '<a href="' . esc_url( admin_url( 'admin?page=formidable&frm_action=new' ) ) . '"', '</a>' ) ?></li> |
| 77 | - <li><?php printf(__( 'After your form is created, go to Formidable -> %1$sForms%2$s.', 'formidable' ), '<a href="?page=formidable">', '</a>') ?></li> |
|
| 77 | + <li><?php printf( __( 'After your form is created, go to Formidable -> %1$sForms%2$s.', 'formidable' ), '<a href="?page=formidable">', '</a>' ) ?></li> |
|
| 78 | 78 | <li><?php _e( 'Place your mouse over the name of the form you just created, and click the "Create Template" link.', 'formidable' ) ?></li> |
| 79 | 79 | </ol> |
| 80 | 80 | <?php } else { |
@@ -91,17 +91,17 @@ discard block |
||
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | if ( 'trash' == $this->status ) { |
| 94 | - if ( current_user_can('frm_edit_forms') ) { |
|
| 94 | + if ( current_user_can( 'frm_edit_forms' ) ) { |
|
| 95 | 95 | $actions['bulk_untrash'] = __( 'Restore', 'formidable' ); |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - if ( current_user_can('frm_delete_forms') ) { |
|
| 98 | + if ( current_user_can( 'frm_delete_forms' ) ) { |
|
| 99 | 99 | $actions['bulk_delete'] = __( 'Delete Permanently', 'formidable' ); |
| 100 | 100 | } |
| 101 | - } else if ( EMPTY_TRASH_DAYS && current_user_can('frm_delete_forms') ) { |
|
| 101 | + } else if ( EMPTY_TRASH_DAYS && current_user_can( 'frm_delete_forms' ) ) { |
|
| 102 | 102 | $actions['bulk_trash'] = __( 'Move to Trash', 'formidable' ); |
| 103 | - } else if ( current_user_can('frm_delete_forms') ) { |
|
| 104 | - $actions['bulk_delete'] = __( 'Delete'); |
|
| 103 | + } else if ( current_user_can( 'frm_delete_forms' ) ) { |
|
| 104 | + $actions['bulk_delete'] = __( 'Delete' ); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | return $actions; |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | return; |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - if ( 'trash' == $this->status && current_user_can('frm_delete_forms') ) { |
|
| 115 | + if ( 'trash' == $this->status && current_user_can( 'frm_delete_forms' ) ) { |
|
| 116 | 116 | ?> |
| 117 | 117 | <div class="alignleft actions frm_visible_overflow"> |
| 118 | 118 | <?php submit_button( __( 'Empty Trash' ), 'apply', 'delete_all', false ); ?> |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | $where = apply_filters( 'frm_forms_dropdown', array(), '' ); |
| 129 | 129 | $forms = FrmForm::get_published_forms( $where ); |
| 130 | 130 | |
| 131 | - $base = admin_url('admin.php?page=formidable&form_type=template'); |
|
| 131 | + $base = admin_url( 'admin.php?page=formidable&form_type=template' ); |
|
| 132 | 132 | $args = array( |
| 133 | 133 | 'frm_action' => 'duplicate', |
| 134 | 134 | 'template' => true, |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | $args['id'] = $form->id; ?> |
| 149 | 149 | <li><a href="<?php echo esc_url( add_query_arg( $args, $base ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)' ) : FrmAppHelper::truncate( $form->name, 33 ) ); ?></a></li> |
| 150 | 150 | <?php |
| 151 | - unset($form); |
|
| 151 | + unset( $form ); |
|
| 152 | 152 | } |
| 153 | 153 | } |
| 154 | 154 | ?> |
@@ -180,10 +180,10 @@ discard block |
||
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | if ( $counts->{$status} || 'published' == $status ) { |
| 183 | - $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>'; |
|
| 183 | + $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>'; |
|
| 184 | 184 | } |
| 185 | 185 | |
| 186 | - unset($status, $name); |
|
| 186 | + unset( $status, $name ); |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | 189 | return $links; |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | $edit_link = '?page=formidable&frm_action=edit&id=' . $item->id; |
| 208 | 208 | $duplicate_link = '?page=formidable&frm_action=duplicate&id=' . $item->id; |
| 209 | 209 | |
| 210 | - $this->get_actions($actions, $item, $edit_link, $duplicate_link); |
|
| 210 | + $this->get_actions( $actions, $item, $edit_link, $duplicate_link ); |
|
| 211 | 211 | |
| 212 | 212 | $action_links = $this->row_actions( $actions ); |
| 213 | 213 | |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | |
| 250 | 250 | break; |
| 251 | 251 | case 'created_at': |
| 252 | - $date = date($format, strtotime($item->created_at)); |
|
| 252 | + $date = date( $format, strtotime( $item->created_at ) ); |
|
| 253 | 253 | $val = '<abbr title="' . esc_attr( date( 'Y/m/d g:i:s A', strtotime( $item->created_at ) ) ) . '">' . $date . '</abbr>'; |
| 254 | 254 | break; |
| 255 | 255 | case 'shortcode': |
@@ -260,11 +260,11 @@ discard block |
||
| 260 | 260 | break; |
| 261 | 261 | case 'entries': |
| 262 | 262 | if ( isset( $item->options['no_save'] ) && $item->options['no_save'] ) { |
| 263 | - $val = '<i class="frm_icon_font frm_forbid_icon frm_bstooltip" title="' . esc_attr('Saving entries is disabled for this form', 'formidable' ) . '"></i>'; |
|
| 263 | + $val = '<i class="frm_icon_font frm_forbid_icon frm_bstooltip" title="' . esc_attr( 'Saving entries is disabled for this form', 'formidable' ) . '"></i>'; |
|
| 264 | 264 | } else { |
| 265 | - $text = FrmEntry::getRecordCount($item->id); |
|
| 266 | - $val = current_user_can('frm_view_entries') ? '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-entries&form=' . $item->id ) ) . '">' . $text . '</a>' : $text; |
|
| 267 | - unset($text); |
|
| 265 | + $text = FrmEntry::getRecordCount( $item->id ); |
|
| 266 | + $val = current_user_can( 'frm_view_entries' ) ? '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-entries&form=' . $item->id ) ) . '">' . $text . '</a>' : $text; |
|
| 267 | + unset( $text ); |
|
| 268 | 268 | } |
| 269 | 269 | break; |
| 270 | 270 | case 'type': |
@@ -272,12 +272,12 @@ discard block |
||
| 272 | 272 | break; |
| 273 | 273 | } |
| 274 | 274 | |
| 275 | - if ( isset($val) ) { |
|
| 275 | + if ( isset( $val ) ) { |
|
| 276 | 276 | $r .= "<td $attributes>"; |
| 277 | 277 | $r .= $val; |
| 278 | 278 | $r .= '</td>'; |
| 279 | 279 | } |
| 280 | - unset($val); |
|
| 280 | + unset( $val ); |
|
| 281 | 281 | } |
| 282 | 282 | $r .= '</tr>'; |
| 283 | 283 | |
@@ -290,18 +290,18 @@ discard block |
||
| 290 | 290 | */ |
| 291 | 291 | private function get_actions( &$actions, $item, $edit_link, $duplicate_link ) { |
| 292 | 292 | if ( 'trash' == $this->status ) { |
| 293 | - if ( current_user_can('frm_edit_forms') ) { |
|
| 293 | + if ( current_user_can( 'frm_edit_forms' ) ) { |
|
| 294 | 294 | $actions['restore'] = FrmFormsHelper::delete_trash_link( $item->id, $item->status, 'short' ); |
| 295 | 295 | } |
| 296 | 296 | |
| 297 | - if ( current_user_can('frm_delete_forms') ) { |
|
| 297 | + if ( current_user_can( 'frm_delete_forms' ) ) { |
|
| 298 | 298 | $trash_url = wp_nonce_url( '?page=formidable&form_status=trash&frm_action=destroy&id=' . $item->id, 'destroy_form_' . $item->id ); |
| 299 | 299 | $actions['trash'] = '<a href="' . esc_url( $trash_url ) . '" class="submitdelete" onclick="return confirm(\'' . __( 'Are you sure you want to permanently delete that?', 'formidable' ) . '\')">' . __( 'Delete Permanently' ) . '</a>'; |
| 300 | 300 | } |
| 301 | 301 | return; |
| 302 | 302 | } |
| 303 | 303 | |
| 304 | - if ( current_user_can('frm_edit_forms') ) { |
|
| 304 | + if ( current_user_can( 'frm_edit_forms' ) ) { |
|
| 305 | 305 | if ( ! $item->is_template || ! $item->default_template ) { |
| 306 | 306 | $actions['frm_edit'] = '<a href="' . esc_url( $edit_link ) . '">' . __( 'Edit' ) . '</a>'; |
| 307 | 307 | } |
@@ -323,7 +323,7 @@ discard block |
||
| 323 | 323 | unset( $actions['trash'] ); |
| 324 | 324 | } |
| 325 | 325 | |
| 326 | - $actions['view'] = '<a href="' . esc_url( FrmFormsHelper::get_direct_link( $item->form_key, $item ) ) . '" target="_blank">' . __( 'Preview') . '</a>'; |
|
| 326 | + $actions['view'] = '<a href="' . esc_url( FrmFormsHelper::get_direct_link( $item->form_key, $item ) ) . '" target="_blank">' . __( 'Preview' ) . '</a>'; |
|
| 327 | 327 | } |
| 328 | 328 | |
| 329 | 329 | /** |
@@ -331,8 +331,8 @@ discard block |
||
| 331 | 331 | */ |
| 332 | 332 | private function get_form_name( $item, $actions, $edit_link, $mode = 'list' ) { |
| 333 | 333 | $form_name = $item->name; |
| 334 | - if ( trim($form_name) == '' ) { |
|
| 335 | - $form_name = __( '(no title)'); |
|
| 334 | + if ( trim( $form_name ) == '' ) { |
|
| 335 | + $form_name = __( '(no title)' ); |
|
| 336 | 336 | } |
| 337 | 337 | $form_name = FrmAppHelper::kses( $form_name ); |
| 338 | 338 | if ( 'excerpt' != $mode ) { |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | private function add_form_description( $item, &$val ) { |
| 370 | 370 | global $mode; |
| 371 | 371 | if ( 'excerpt' == $mode ) { |
| 372 | - $val .= FrmAppHelper::truncate(strip_tags($item->description), 50); |
|
| 372 | + $val .= FrmAppHelper::truncate( strip_tags( $item->description ), 50 ); |
|
| 373 | 373 | } |
| 374 | 374 | } |
| 375 | 375 | } |