@@ -11,27 +11,27 @@ |
||
| 11 | 11 | License: GPLv2 |
| 12 | 12 | License URI: http://www.gnu.org/licenses/gpl-3.0.html |
| 13 | 13 | */ |
| 14 | -if ( !defined( 'ABSPATH' ) ) exit; |
|
| 14 | +if ( ! defined('ABSPATH')) exit; |
|
| 15 | 15 | |
| 16 | 16 | |
| 17 | 17 | //Define basic names |
| 18 | 18 | //Edit the "_PLUGIN" in following namespaces for compatibility with your desired name. |
| 19 | -defined( 'PLUGIN_DEBUG' ) or define( 'PLUGIN_DEBUG', false ); |
|
| 19 | +defined('PLUGIN_DEBUG') or define('PLUGIN_DEBUG', false); |
|
| 20 | 20 | |
| 21 | -defined( 'PLUGIN_PATH' ) or define( 'PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); |
|
| 22 | -defined( 'PLUGIN_FILE' ) or define( 'PLUGIN_FILE', plugin_basename( __FILE__ ) ); |
|
| 21 | +defined('PLUGIN_PATH') or define('PLUGIN_PATH', plugin_dir_path(__FILE__)); |
|
| 22 | +defined('PLUGIN_FILE') or define('PLUGIN_FILE', plugin_basename(__FILE__)); |
|
| 23 | 23 | |
| 24 | -defined( 'PLUGIN_TRANSLATE' ) or define( 'PLUGIN_TRANSLATE', plugin_basename( plugin_dir_path( __FILE__ ) . 'asset/ln/' ) ); |
|
| 24 | +defined('PLUGIN_TRANSLATE') or define('PLUGIN_TRANSLATE', plugin_basename(plugin_dir_path(__FILE__) . 'asset/ln/')); |
|
| 25 | 25 | |
| 26 | -defined( 'PLUGIN_JS' ) or define( 'PLUGIN_JS', plugins_url( '/asset/js/', __FILE__ ) ); |
|
| 27 | -defined( 'PLUGIN_CSS' ) or define( 'PLUGIN_CSS', plugins_url( '/asset/css/', __FILE__ ) ); |
|
| 28 | -defined( 'PLUGIN_IMAGE' ) or define( 'PLUGIN_IMAGE', plugins_url( '/asset/img/', __FILE__ ) ); |
|
| 26 | +defined('PLUGIN_JS') or define('PLUGIN_JS', plugins_url('/asset/js/', __FILE__)); |
|
| 27 | +defined('PLUGIN_CSS') or define('PLUGIN_CSS', plugins_url('/asset/css/', __FILE__)); |
|
| 28 | +defined('PLUGIN_IMAGE') or define('PLUGIN_IMAGE', plugins_url('/asset/img/', __FILE__)); |
|
| 29 | 29 | |
| 30 | 30 | |
| 31 | 31 | //The Plugin |
| 32 | -require_once( 'vendor/autoload.php' ); |
|
| 32 | +require_once('vendor/autoload.php'); |
|
| 33 | 33 | function plugin() { |
| 34 | - if ( class_exists( 'NirjharLo\\WP_Plugin_Framework\\PluginLoader' ) ) { |
|
| 34 | + if (class_exists('NirjharLo\\WP_Plugin_Framework\\PluginLoader')) { |
|
| 35 | 35 | return NirjharLo\WP_Plugin_Framework\PluginLoader::instance(); |
| 36 | 36 | } |
| 37 | 37 | } |
@@ -6,21 +6,21 @@ discard block |
||
| 6 | 6 | |
| 7 | 7 | class ComposerStaticInit3743e829f921e1c1302d19c10846ac46 |
| 8 | 8 | { |
| 9 | - public static $prefixLengthsPsr4 = array ( |
|
| 9 | + public static $prefixLengthsPsr4 = array( |
|
| 10 | 10 | 'N' => |
| 11 | - array ( |
|
| 11 | + array( |
|
| 12 | 12 | 'NirjharLo\\WP_Plugin_Framework\\' => 30, |
| 13 | 13 | ), |
| 14 | 14 | ); |
| 15 | 15 | |
| 16 | - public static $prefixDirsPsr4 = array ( |
|
| 16 | + public static $prefixDirsPsr4 = array( |
|
| 17 | 17 | 'NirjharLo\\WP_Plugin_Framework\\' => |
| 18 | - array ( |
|
| 18 | + array( |
|
| 19 | 19 | 0 => __DIR__ . '/../..' . '/plugin', |
| 20 | 20 | ), |
| 21 | 21 | ); |
| 22 | 22 | |
| 23 | - public static $classMap = array ( |
|
| 23 | + public static $classMap = array( |
|
| 24 | 24 | 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', |
| 25 | 25 | 'NirjharLo\\WP_Plugin_Framework\\Lib\\Ajax' => __DIR__ . '/../..' . '/plugin/Lib/Ajax.php', |
| 26 | 26 | 'NirjharLo\\WP_Plugin_Framework\\Lib\\Api' => __DIR__ . '/../..' . '/plugin/Lib/Api.php', |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | |
| 43 | 43 | public static function getInitializer(ClassLoader $loader) |
| 44 | 44 | { |
| 45 | - return \Closure::bind(function () use ($loader) { |
|
| 45 | + return \Closure::bind(function() use ($loader) { |
|
| 46 | 46 | $loader->prefixLengthsPsr4 = ComposerStaticInit3743e829f921e1c1302d19c10846ac46::$prefixLengthsPsr4; |
| 47 | 47 | $loader->prefixDirsPsr4 = ComposerStaticInit3743e829f921e1c1302d19c10846ac46::$prefixDirsPsr4; |
| 48 | 48 | $loader->classMap = ComposerStaticInit3743e829f921e1c1302d19c10846ac46::$classMap; |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); |
| 29 | 29 | spl_autoload_unregister(array('ComposerAutoloaderInit3743e829f921e1c1302d19c10846ac46', 'loadClassLoader')); |
| 30 | 30 | |
| 31 | - $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); |
|
| 31 | + $useStaticLoader = PHP_VERSION_ID >= 50600 && ! defined('HHVM_VERSION') && ( ! function_exists('zend_loader_file_encoded') || ! zend_loader_file_encoded()); |
|
| 32 | 32 | if ($useStaticLoader) { |
| 33 | 33 | require __DIR__ . '/autoload_static.php'; |
| 34 | 34 | |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | |
| 69 | 69 | public function getPrefixes() |
| 70 | 70 | { |
| 71 | - if (!empty($this->prefixesPsr0)) { |
|
| 71 | + if ( ! empty($this->prefixesPsr0)) { |
|
| 72 | 72 | return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); |
| 73 | 73 | } |
| 74 | 74 | |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | */ |
| 118 | 118 | public function add($prefix, $paths, $prepend = false) |
| 119 | 119 | { |
| 120 | - if (!$prefix) { |
|
| 120 | + if ( ! $prefix) { |
|
| 121 | 121 | if ($prepend) { |
| 122 | 122 | $this->fallbackDirsPsr0 = array_merge( |
| 123 | 123 | (array) $paths, |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | } |
| 135 | 135 | |
| 136 | 136 | $first = $prefix[0]; |
| 137 | - if (!isset($this->prefixesPsr0[$first][$prefix])) { |
|
| 137 | + if ( ! isset($this->prefixesPsr0[$first][$prefix])) { |
|
| 138 | 138 | $this->prefixesPsr0[$first][$prefix] = (array) $paths; |
| 139 | 139 | |
| 140 | 140 | return; |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | */ |
| 165 | 165 | public function addPsr4($prefix, $paths, $prepend = false) |
| 166 | 166 | { |
| 167 | - if (!$prefix) { |
|
| 167 | + if ( ! $prefix) { |
|
| 168 | 168 | // Register directories for the root namespace. |
| 169 | 169 | if ($prepend) { |
| 170 | 170 | $this->fallbackDirsPsr4 = array_merge( |
@@ -177,7 +177,7 @@ discard block |
||
| 177 | 177 | (array) $paths |
| 178 | 178 | ); |
| 179 | 179 | } |
| 180 | - } elseif (!isset($this->prefixDirsPsr4[$prefix])) { |
|
| 180 | + } elseif ( ! isset($this->prefixDirsPsr4[$prefix])) { |
|
| 181 | 181 | // Register directories for a new namespace. |
| 182 | 182 | $length = strlen($prefix); |
| 183 | 183 | if ('\\' !== $prefix[$length - 1]) { |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | */ |
| 210 | 210 | public function set($prefix, $paths) |
| 211 | 211 | { |
| 212 | - if (!$prefix) { |
|
| 212 | + if ( ! $prefix) { |
|
| 213 | 213 | $this->fallbackDirsPsr0 = (array) $paths; |
| 214 | 214 | } else { |
| 215 | 215 | $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | */ |
| 228 | 228 | public function setPsr4($prefix, $paths) |
| 229 | 229 | { |
| 230 | - if (!$prefix) { |
|
| 230 | + if ( ! $prefix) { |
|
| 231 | 231 | $this->fallbackDirsPsr4 = (array) $paths; |
| 232 | 232 | } else { |
| 233 | 233 | $length = strlen($prefix); |
@@ -364,7 +364,7 @@ discard block |
||
| 364 | 364 | return false; |
| 365 | 365 | } |
| 366 | 366 | if (null !== $this->apcuPrefix) { |
| 367 | - $file = apcu_fetch($this->apcuPrefix.$class, $hit); |
|
| 367 | + $file = apcu_fetch($this->apcuPrefix . $class, $hit); |
|
| 368 | 368 | if ($hit) { |
| 369 | 369 | return $file; |
| 370 | 370 | } |
@@ -378,7 +378,7 @@ discard block |
||
| 378 | 378 | } |
| 379 | 379 | |
| 380 | 380 | if (null !== $this->apcuPrefix) { |
| 381 | - apcu_add($this->apcuPrefix.$class, $file); |
|
| 381 | + apcu_add($this->apcuPrefix . $class, $file); |
|
| 382 | 382 | } |
| 383 | 383 | |
| 384 | 384 | if (false === $file) { |
@@ -4,19 +4,19 @@ |
||
| 4 | 4 | |
| 5 | 5 | $issues = array(); |
| 6 | 6 | |
| 7 | -if (!(PHP_VERSION_ID >= 50300)) { |
|
| 7 | +if ( ! (PHP_VERSION_ID >= 50300)) { |
|
| 8 | 8 | $issues[] = 'Your Composer dependencies require a PHP version ">= 5.3.0". You are running ' . PHP_VERSION . '.'; |
| 9 | 9 | } |
| 10 | 10 | |
| 11 | 11 | if ($issues) { |
| 12 | - if (!headers_sent()) { |
|
| 12 | + if ( ! headers_sent()) { |
|
| 13 | 13 | header('HTTP/1.1 500 Internal Server Error'); |
| 14 | 14 | } |
| 15 | - if (!ini_get('display_errors')) { |
|
| 15 | + if ( ! ini_get('display_errors')) { |
|
| 16 | 16 | if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { |
| 17 | - fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); |
|
| 18 | - } elseif (!headers_sent()) { |
|
| 19 | - echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; |
|
| 17 | + fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL . PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL . PHP_EOL); |
|
| 18 | + } elseif ( ! headers_sent()) { |
|
| 19 | + echo 'Composer detected issues in your platform:' . PHP_EOL . PHP_EOL . str_replace('You are running ' . PHP_VERSION . '.', '', implode(PHP_EOL, $issues)) . PHP_EOL . PHP_EOL; |
|
| 20 | 20 | } |
| 21 | 21 | } |
| 22 | 22 | trigger_error( |
@@ -11,11 +11,11 @@ discard block |
||
| 11 | 11 | * @author Nirjhar Lo |
| 12 | 12 | * @package wp-plugin-framework |
| 13 | 13 | */ |
| 14 | -if ( ! class_exists( 'Table' ) ) { |
|
| 14 | +if ( ! class_exists('Table')) { |
|
| 15 | 15 | |
| 16 | - if ( ! class_exists( 'WP_List_Table' ) ) { |
|
| 17 | - require_once( ABSPATH . 'wp-admin/includes/screen.php' ); |
|
| 18 | - require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' ); |
|
| 16 | + if ( ! class_exists('WP_List_Table')) { |
|
| 17 | + require_once(ABSPATH . 'wp-admin/includes/screen.php'); |
|
| 18 | + require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php'); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | final class Table extends WP_List_Table { |
@@ -28,11 +28,11 @@ discard block |
||
| 28 | 28 | */ |
| 29 | 29 | public function __construct() { |
| 30 | 30 | |
| 31 | - parent::__construct( [ |
|
| 32 | - 'singular' => __( 'Name', 'textdomain' ), |
|
| 33 | - 'plural' => __( 'Names', 'textdomain' ), |
|
| 31 | + parent::__construct([ |
|
| 32 | + 'singular' => __('Name', 'textdomain'), |
|
| 33 | + 'plural' => __('Names', 'textdomain'), |
|
| 34 | 34 | 'ajax' => false, |
| 35 | - ] ); |
|
| 35 | + ]); |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | |
@@ -41,27 +41,27 @@ discard block |
||
| 41 | 41 | * |
| 42 | 42 | * @return Array |
| 43 | 43 | */ |
| 44 | - public static function get_Table( $per_page = 5, $page_number = 1 ) { |
|
| 44 | + public static function get_Table($per_page = 5, $page_number = 1) { |
|
| 45 | 45 | |
| 46 | 46 | global $wpdb; |
| 47 | 47 | |
| 48 | 48 | //Take pivotal from URL |
| 49 | - $link = ( isset( $_GET['link'] ) ? $_GET['link'] : 'link' ); |
|
| 49 | + $link = (isset($_GET['link']) ? $_GET['link'] : 'link'); |
|
| 50 | 50 | |
| 51 | 51 | //Build the db query base |
| 52 | 52 | $sql = "SELECT * FROM {$wpdb->prefix}wordpress_table"; |
| 53 | 53 | $sql .= " QUERIES with $link'"; |
| 54 | 54 | |
| 55 | 55 | //Set filters in the query using $_REQUEST |
| 56 | - if ( ! empty( $_REQUEST['orderby'] ) ) { |
|
| 57 | - $sql .= ' ORDER BY ' . esc_sql( $_REQUEST['orderby'] ); |
|
| 58 | - $sql .= ! empty( $_REQUEST['order'] ) ? ' ' . esc_sql( $_REQUEST['order'] ) : ' ASC'; |
|
| 56 | + if ( ! empty($_REQUEST['orderby'])) { |
|
| 57 | + $sql .= ' ORDER BY ' . esc_sql($_REQUEST['orderby']); |
|
| 58 | + $sql .= ! empty($_REQUEST['order']) ? ' ' . esc_sql($_REQUEST['order']) : ' ASC'; |
|
| 59 | 59 | } |
| 60 | 60 | $sql .= " LIMIT $per_page"; |
| 61 | - $sql .= ' OFFSET ' . ( $page_number - 1 ) * $per_page; |
|
| 61 | + $sql .= ' OFFSET ' . ($page_number - 1) * $per_page; |
|
| 62 | 62 | |
| 63 | 63 | //get the data from database |
| 64 | - $result = $wpdb->get_results( $sql, 'ARRAY_A' ); |
|
| 64 | + $result = $wpdb->get_results($sql, 'ARRAY_A'); |
|
| 65 | 65 | |
| 66 | 66 | return $result; |
| 67 | 67 | } |
@@ -72,11 +72,11 @@ discard block |
||
| 72 | 72 | * |
| 73 | 73 | * @return Void |
| 74 | 74 | */ |
| 75 | - public static function delete_url( $id ) { |
|
| 75 | + public static function delete_url($id) { |
|
| 76 | 76 | |
| 77 | 77 | global $wpdb; |
| 78 | 78 | |
| 79 | - $wpdb->delete( "{$wpdb->prefix}wordpress_table", array( 'ID' => $id ), array( '%s' ) ); |
|
| 79 | + $wpdb->delete("{$wpdb->prefix}wordpress_table", array('ID' => $id), array('%s')); |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | */ |
| 88 | 88 | public function no_items() { |
| 89 | 89 | |
| 90 | - _e( 'No Items Added yet.', 'textDomain' ); |
|
| 90 | + _e('No Items Added yet.', 'textDomain'); |
|
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | |
@@ -101,13 +101,13 @@ discard block |
||
| 101 | 101 | global $wpdb; |
| 102 | 102 | |
| 103 | 103 | //Take pivotal from URL |
| 104 | - $link = ( isset( $_GET['link'] ) ? $_GET['link'] : 'link' ); |
|
| 104 | + $link = (isset($_GET['link']) ? $_GET['link'] : 'link'); |
|
| 105 | 105 | |
| 106 | 106 | //Build the db query base |
| 107 | 107 | $sql = "SELECT COUNT(*) FROM {$wpdb->prefix}wordpress_table"; |
| 108 | 108 | $sql .= " QUERIES with $link'"; |
| 109 | 109 | |
| 110 | - return $wpdb->get_var( $sql ); |
|
| 110 | + return $wpdb->get_var($sql); |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | |
@@ -116,17 +116,17 @@ discard block |
||
| 116 | 116 | * |
| 117 | 117 | * @return Html |
| 118 | 118 | */ |
| 119 | - public function column_name( $item ) { |
|
| 119 | + public function column_name($item) { |
|
| 120 | 120 | |
| 121 | - $delete_nonce = wp_create_nonce( 'delete_url' ); |
|
| 122 | - $title = sprintf( '<strong>%s</strong>', $item['item_name'] ); |
|
| 121 | + $delete_nonce = wp_create_nonce('delete_url'); |
|
| 122 | + $title = sprintf('<strong>%s</strong>', $item['item_name']); |
|
| 123 | 123 | |
| 124 | 124 | //Change the page instruction where you want to show it |
| 125 | 125 | $actions = array( |
| 126 | - 'delete' => sprintf( '<a href="?page=%s&action=%s&instruction=%s&_wpnonce=%s">%s</a>', esc_attr( $_REQUEST['page'] ), 'delete', absint( $item['ID'] ), $delete_nonce, __( 'Delete', 'textdomain' ) ) |
|
| 126 | + 'delete' => sprintf('<a href="?page=%s&action=%s&instruction=%s&_wpnonce=%s">%s</a>', esc_attr($_REQUEST['page']), 'delete', absint($item['ID']), $delete_nonce, __('Delete', 'textdomain')) |
|
| 127 | 127 | ); |
| 128 | 128 | |
| 129 | - return $title . $this->row_actions( $actions ); |
|
| 129 | + return $title . $this->row_actions($actions); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | |
@@ -135,22 +135,22 @@ discard block |
||
| 135 | 135 | * |
| 136 | 136 | * @return Html |
| 137 | 137 | */ |
| 138 | - public function column_default( $item, $column_name ) { |
|
| 138 | + public function column_default($item, $column_name) { |
|
| 139 | 139 | |
| 140 | - switch ( $column_name ) { |
|
| 140 | + switch ($column_name) { |
|
| 141 | 141 | |
| 142 | 142 | case 'name': |
| 143 | 143 | //This is the first column |
| 144 | - return $this->column_name( $item ); |
|
| 144 | + return $this->column_name($item); |
|
| 145 | 145 | case 'caseOne': |
| 146 | 146 | case 'caseTwo': |
| 147 | 147 | case 'caseThree': |
| 148 | - return $item[ $column_name ]; |
|
| 148 | + return $item[$column_name]; |
|
| 149 | 149 | |
| 150 | 150 | default: |
| 151 | 151 | |
| 152 | 152 | //Show the whole array for troubleshooting purposes |
| 153 | - return print_r( $item, true ); |
|
| 153 | + return print_r($item, true); |
|
| 154 | 154 | } |
| 155 | 155 | } |
| 156 | 156 | |
@@ -160,9 +160,9 @@ discard block |
||
| 160 | 160 | * |
| 161 | 161 | * @return Html |
| 162 | 162 | */ |
| 163 | - public function column_cb( $item ) { |
|
| 163 | + public function column_cb($item) { |
|
| 164 | 164 | |
| 165 | - return sprintf( '<input type="checkbox" name="bulk-select[]" value="%s" />', $item['ID'] ); |
|
| 165 | + return sprintf('<input type="checkbox" name="bulk-select[]" value="%s" />', $item['ID']); |
|
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | |
@@ -175,10 +175,10 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | $columns = array( |
| 177 | 177 | 'cb' => '<input type="checkbox" />', |
| 178 | - 'name' => __( 'Name', 'textdomain' ), |
|
| 179 | - 'caseOne' => __( 'Case One', 'textdomain' ), |
|
| 180 | - 'caseTwo' => __( 'Case Two', 'textdomain' ), |
|
| 181 | - 'caseThree' => __( 'Case Three', 'textdomain' ), |
|
| 178 | + 'name' => __('Name', 'textdomain'), |
|
| 179 | + 'caseOne' => __('Case One', 'textdomain'), |
|
| 180 | + 'caseTwo' => __('Case Two', 'textdomain'), |
|
| 181 | + 'caseThree' => __('Case Three', 'textdomain'), |
|
| 182 | 182 | ); |
| 183 | 183 | |
| 184 | 184 | return $columns; |
@@ -193,9 +193,9 @@ discard block |
||
| 193 | 193 | public function get_sortable_columns() { |
| 194 | 194 | |
| 195 | 195 | $sortable_columns = array( |
| 196 | - 'name' => array( 'name', true ), |
|
| 197 | - 'caseOne' => array( 'caseOne', false ), |
|
| 198 | - 'caseTwo' => array( 'caseTwo', false ), |
|
| 196 | + 'name' => array('name', true), |
|
| 197 | + 'caseOne' => array('caseOne', false), |
|
| 198 | + 'caseTwo' => array('caseTwo', false), |
|
| 199 | 199 | ); |
| 200 | 200 | |
| 201 | 201 | return $sortable_columns; |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | */ |
| 210 | 210 | public function get_bulk_actions() { |
| 211 | 211 | |
| 212 | - $actions = array( 'bulk-delete' => 'Delete' ); |
|
| 212 | + $actions = array('bulk-delete' => 'Delete'); |
|
| 213 | 213 | |
| 214 | 214 | return $actions; |
| 215 | 215 | } |
@@ -226,15 +226,15 @@ discard block |
||
| 226 | 226 | |
| 227 | 227 | /** Process bulk action */ |
| 228 | 228 | $this->process_bulk_action(); |
| 229 | - $per_page = $this->get_items_per_page( 'option_name_per_page', 5 ); |
|
| 229 | + $per_page = $this->get_items_per_page('option_name_per_page', 5); |
|
| 230 | 230 | $current_page = $this->get_pagenum(); |
| 231 | 231 | $total_items = self::record_count(); |
| 232 | - $this->set_pagination_args( array( |
|
| 232 | + $this->set_pagination_args(array( |
|
| 233 | 233 | 'total_items' => $total_items, |
| 234 | 234 | 'per_page' => $per_page, |
| 235 | - ) ); |
|
| 235 | + )); |
|
| 236 | 236 | |
| 237 | - $this->items = self::get_Table( $per_page, $current_page ); |
|
| 237 | + $this->items = self::get_Table($per_page, $current_page); |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | 240 | |
@@ -246,24 +246,24 @@ discard block |
||
| 246 | 246 | public function process_bulk_action() { |
| 247 | 247 | |
| 248 | 248 | //Detect when a bulk action is being triggered... |
| 249 | - if ( 'delete' === $this->current_action() ) { |
|
| 249 | + if ('delete' === $this->current_action()) { |
|
| 250 | 250 | |
| 251 | 251 | //In our file that handles the request, verify the nonce. |
| 252 | - $nonce = esc_attr( $_REQUEST['_wpnonce'] ); |
|
| 252 | + $nonce = esc_attr($_REQUEST['_wpnonce']); |
|
| 253 | 253 | |
| 254 | - if ( ! wp_verify_nonce( $nonce, 'delete_url' ) ) { |
|
| 255 | - die( 'Go get a live script kiddies' ); |
|
| 254 | + if ( ! wp_verify_nonce($nonce, 'delete_url')) { |
|
| 255 | + die('Go get a live script kiddies'); |
|
| 256 | 256 | } else { |
| 257 | - self::delete_url( absint( $_GET['instruction'] ) ); //Remember the instruction param from column_name method |
|
| 257 | + self::delete_url(absint($_GET['instruction'])); //Remember the instruction param from column_name method |
|
| 258 | 258 | } |
| 259 | 259 | } |
| 260 | 260 | |
| 261 | 261 | //If the delete bulk action is triggered |
| 262 | - if ( isset( $_POST['action'] ) ) { |
|
| 263 | - if ( ( isset( $_POST['action'] ) && $_POST['action'] == 'bulk-delete' ) ) { |
|
| 264 | - $delete_ids = esc_sql( $_POST['bulk-select'] ); |
|
| 265 | - foreach ( $delete_ids as $id ) { |
|
| 266 | - self::delete_url( $id ); |
|
| 262 | + if (isset($_POST['action'])) { |
|
| 263 | + if ((isset($_POST['action']) && $_POST['action'] == 'bulk-delete')) { |
|
| 264 | + $delete_ids = esc_sql($_POST['bulk-select']); |
|
| 265 | + foreach ($delete_ids as $id) { |
|
| 266 | + self::delete_url($id); |
|
| 267 | 267 | } |
| 268 | 268 | } |
| 269 | 269 | } |
@@ -1,7 +1,7 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace NirjharLo\WP_Plugin_Framework\Lib; |
| 3 | 3 | |
| 4 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
| 4 | +if ( ! defined('ABSPATH')) exit; |
|
| 5 | 5 | |
| 6 | 6 | /** |
| 7 | 7 | * Plugin upload for WordPress front end or backend |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | * @author Nirjhar Lo |
| 10 | 10 | * @package wp-plugin-framework |
| 11 | 11 | */ |
| 12 | -if ( ! class_exists( 'Upload' ) ) { |
|
| 12 | +if ( ! class_exists('Upload')) { |
|
| 13 | 13 | |
| 14 | 14 | final class Upload { |
| 15 | 15 | |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | public function __construct() { |
| 23 | 23 | |
| 24 | - if ( isset($_POST['UploadSubmit']) ) { |
|
| 24 | + if (isset($_POST['UploadSubmit'])) { |
|
| 25 | 25 | $this->upload_controller(); |
| 26 | 26 | } |
| 27 | 27 | |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | |
| 39 | 39 | <form method="POST" action="" enctype="multipart/form-data"> |
| 40 | 40 | <input name="UploadFile" type="file" multiple="false"/> |
| 41 | - <?php submit_button( __( 'Upload', 'stv' ), 'secondary', 'UploadSubmit' ); ?> |
|
| 41 | + <?php submit_button(__('Upload', 'stv'), 'secondary', 'UploadSubmit'); ?> |
|
| 42 | 42 | </form> |
| 43 | 43 | <?php |
| 44 | 44 | } |
@@ -55,28 +55,28 @@ discard block |
||
| 55 | 55 | $type = $file['type']; |
| 56 | 56 | |
| 57 | 57 | // Check in your file type |
| 58 | - if( $type != 'application/_TYPE_' ) { |
|
| 59 | - add_action( 'admin_notices', array( $this, 'file_type_error_admin_notice' ) ); |
|
| 58 | + if ($type != 'application/_TYPE_') { |
|
| 59 | + add_action('admin_notices', array($this, 'file_type_error_admin_notice')); |
|
| 60 | 60 | } else { |
| 61 | 61 | |
| 62 | - if (!function_exists('wp_handle_upload')){ |
|
| 62 | + if ( ! function_exists('wp_handle_upload')) { |
|
| 63 | 63 | require_once(ABSPATH . 'wp-admin/includes/image.php'); |
| 64 | 64 | require_once(ABSPATH . 'wp-admin/includes/file.php'); |
| 65 | 65 | require_once(ABSPATH . 'wp-admin/includes/media.php'); |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - $overrides = array( 'test_form' => false); |
|
| 68 | + $overrides = array('test_form' => false); |
|
| 69 | 69 | $attachment = wp_handle_upload($file, $overrides); |
| 70 | 70 | |
| 71 | - if( is_array( $attachment_id ) && array_key_exists( 'path', $attachment ) ) { |
|
| 71 | + if (is_array($attachment_id) && array_key_exists('path', $attachment)) { |
|
| 72 | 72 | $upload_path = $attachment['path']; |
| 73 | 73 | |
| 74 | - add_action( 'admin_notices', array( $this, 'success_notice' ) ); |
|
| 74 | + add_action('admin_notices', array($this, 'success_notice')); |
|
| 75 | 75 | |
| 76 | 76 | // Use $upload_path for any purpose. For example storing temporarily |
| 77 | 77 | // update_option( 'some_token', $upload_path ); |
| 78 | 78 | } else { |
| 79 | - add_action( 'admin_notices', array( $this, 'file_error_admin_notice' ) ); |
|
| 79 | + add_action('admin_notices', array($this, 'file_error_admin_notice')); |
|
| 80 | 80 | $upload_path = false; |
| 81 | 81 | } |
| 82 | 82 | } |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | public function file_type_error_admin_notice() { ?> |
| 92 | 92 | |
| 93 | 93 | <div class="notice notice-error is-dismissible"> |
| 94 | - <p><?php _e( 'Please Upload correct type of file only.', 'textdomain' ); ?></p> |
|
| 94 | + <p><?php _e('Please Upload correct type of file only.', 'textdomain'); ?></p> |
|
| 95 | 95 | </div> |
| 96 | 96 | <?php |
| 97 | 97 | } |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | public function file_error_admin_notice() { ?> |
| 106 | 106 | |
| 107 | 107 | <div class="notice notice-error is-dismissible"> |
| 108 | - <p><?php _e( 'File Upload failed.', 'textdomain' ); ?></p> |
|
| 108 | + <p><?php _e('File Upload failed.', 'textdomain'); ?></p> |
|
| 109 | 109 | </div> |
| 110 | 110 | <?php |
| 111 | 111 | } |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | public function success_notice() { ?> |
| 120 | 120 | |
| 121 | 121 | <div class="notice notice-success is-dismissible"> |
| 122 | - <p><?php _e( 'Successfully saved file details.', 'textdomain' ); ?></p> |
|
| 122 | + <p><?php _e('Successfully saved file details.', 'textdomain'); ?></p> |
|
| 123 | 123 | </div> |
| 124 | 124 | <?php |
| 125 | 125 | } |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | * @author Nirjhar Lo |
| 18 | 18 | * @package wp-plugin-framework |
| 19 | 19 | */ |
| 20 | -if ( ! class_exists( 'Api' ) ) { |
|
| 20 | +if ( ! class_exists('Api')) { |
|
| 21 | 21 | |
| 22 | 22 | class Api { |
| 23 | 23 | |
@@ -91,14 +91,14 @@ discard block |
||
| 91 | 91 | |
| 92 | 92 | $curl = curl_init(); |
| 93 | 93 | |
| 94 | - curl_setopt_array( $curl, $this->build() ); |
|
| 94 | + curl_setopt_array($curl, $this->build()); |
|
| 95 | 95 | |
| 96 | - $result = curl_exec( $curl ); |
|
| 97 | - $err = curl_error( $curl ); |
|
| 96 | + $result = curl_exec($curl); |
|
| 97 | + $err = curl_error($curl); |
|
| 98 | 98 | |
| 99 | - curl_close( $curl ); |
|
| 99 | + curl_close($curl); |
|
| 100 | 100 | |
| 101 | - if ( $err ) { |
|
| 101 | + if ($err) { |
|
| 102 | 102 | $result = "cURL Error #:" . $err; |
| 103 | 103 | } |
| 104 | 104 | |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | public function parse($data) { |
| 115 | 115 | |
| 116 | - call_user_func( array( $this, $this->data_type ), $data ); |
|
| 116 | + call_user_func(array($this, $this->data_type), $data); |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | |
@@ -122,12 +122,12 @@ discard block |
||
| 122 | 122 | * |
| 123 | 123 | * @return Array |
| 124 | 124 | */ |
| 125 | - public function xml( $data ) { |
|
| 125 | + public function xml($data) { |
|
| 126 | 126 | |
| 127 | - libxml_use_internal_errors( true ); |
|
| 128 | - $parsed = ( ! $data || $data == '' ? false : simplexml_load_string( $data ) ); |
|
| 127 | + libxml_use_internal_errors(true); |
|
| 128 | + $parsed = ( ! $data || $data == '' ? false : simplexml_load_string($data)); |
|
| 129 | 129 | |
| 130 | - if ( ! $parsed ) { |
|
| 130 | + if ( ! $parsed) { |
|
| 131 | 131 | return false; |
| 132 | 132 | libxml_clear_errors(); |
| 133 | 133 | } else { |
@@ -141,9 +141,9 @@ discard block |
||
| 141 | 141 | * |
| 142 | 142 | * @return Array |
| 143 | 143 | */ |
| 144 | - public function json( $data ) { |
|
| 144 | + public function json($data) { |
|
| 145 | 145 | |
| 146 | - $parsed = ( ! $data || $data == '' ? false : json_decode( $data, 1 ) ); |
|
| 146 | + $parsed = ( ! $data || $data == '' ? false : json_decode($data, 1)); |
|
| 147 | 147 | return $parsed; |
| 148 | 148 | } |
| 149 | 149 | } |
@@ -7,9 +7,9 @@ discard block |
||
| 7 | 7 | * @author Nirjhar Lo |
| 8 | 8 | * @package wp-plugin-framework |
| 9 | 9 | */ |
| 10 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
| 10 | +if ( ! defined('ABSPATH')) exit; |
|
| 11 | 11 | |
| 12 | -if ( ! class_exists( 'Script' ) ) { |
|
| 12 | +if ( ! class_exists('Script')) { |
|
| 13 | 13 | |
| 14 | 14 | final class Script { |
| 15 | 15 | |
@@ -21,9 +21,9 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | public function __construct() { |
| 23 | 23 | |
| 24 | - add_action( 'admin_head', array( $this, 'data_table_css' ) ); |
|
| 25 | - add_action( 'admin_enqueue_scripts', array( $this, 'backend_scripts' ) ); |
|
| 26 | - add_action( 'wp_enqueue_scripts', array( $this, 'frontend_scripts' ) ); |
|
| 24 | + add_action('admin_head', array($this, 'data_table_css')); |
|
| 25 | + add_action('admin_enqueue_scripts', array($this, 'backend_scripts')); |
|
| 26 | + add_action('wp_enqueue_scripts', array($this, 'frontend_scripts')); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | |
@@ -55,10 +55,10 @@ discard block |
||
| 55 | 55 | // Set condition to add script |
| 56 | 56 | // if ( ! isset( $_GET['page'] ) || $_GET['page'] != 'pageName' ) return; |
| 57 | 57 | |
| 58 | - wp_enqueue_script( 'jsName', PLUGIN_JS . 'ui.js', array() ); |
|
| 59 | - wp_localize_script( 'jsName', 'ajax', array( 'ajax_url' => admin_url('admin-ajax.php') ) ); |
|
| 58 | + wp_enqueue_script('jsName', PLUGIN_JS . 'ui.js', array()); |
|
| 59 | + wp_localize_script('jsName', 'ajax', array('ajax_url' => admin_url('admin-ajax.php'))); |
|
| 60 | 60 | |
| 61 | - wp_enqueue_style( 'cssName', PLUGIN_CSS . 'css.css' ); |
|
| 61 | + wp_enqueue_style('cssName', PLUGIN_CSS . 'css.css'); |
|
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | |
@@ -69,10 +69,10 @@ discard block |
||
| 69 | 69 | */ |
| 70 | 70 | public function frontend_scripts() { |
| 71 | 71 | |
| 72 | - wp_enqueue_script( 'jsName', PLUGIN_JS . 'ui.js', array() ); |
|
| 73 | - wp_localize_script( 'jsName', 'ajax', array( 'ajax_url' => admin_url('admin-ajax.php') ) ); |
|
| 72 | + wp_enqueue_script('jsName', PLUGIN_JS . 'ui.js', array()); |
|
| 73 | + wp_localize_script('jsName', 'ajax', array('ajax_url' => admin_url('admin-ajax.php'))); |
|
| 74 | 74 | |
| 75 | - wp_enqueue_style( 'cssName', PLUGIN_CSS . 'css.css' ); |
|
| 75 | + wp_enqueue_style('cssName', PLUGIN_CSS . 'css.css'); |
|
| 76 | 76 | } |
| 77 | 77 | } |
| 78 | 78 | } ?> |