Completed
Push — beta ( 90f176...19e68d )
by
unknown
09:39
created
kmm-flattable.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 use KMM\Flattable\Core;
17 17
 
18 18
 if ( ! function_exists( 'add_filter' ) ) {
19
-	return;
19
+    return;
20 20
 }
21 21
 
22 22
 
@@ -29,21 +29,21 @@  discard block
 block discarded – undo
29 29
  */
30 30
 function ensure_class_loaded( $class_name ) {
31 31
 
32
-	$class_exists   = class_exists( $class_name );
33
-	$autoload_found = file_exists( __DIR__ . '/vendor/autoload.php' );
32
+    $class_exists   = class_exists( $class_name );
33
+    $autoload_found = file_exists( __DIR__ . '/vendor/autoload.php' );
34 34
 
35
-	// If the class does not exist, and the vendor file is there
36
-	// maybe the plugin was installed separately via Composer, let's try to load autoload
37
-	if ( ! $class_exists && $autoload_found ) {
38
-		@require_once __DIR__ . '/vendor/autoload.php';
39
-	}
35
+    // If the class does not exist, and the vendor file is there
36
+    // maybe the plugin was installed separately via Composer, let's try to load autoload
37
+    if ( ! $class_exists && $autoload_found ) {
38
+        @require_once __DIR__ . '/vendor/autoload.php';
39
+    }
40 40
 
41
-	return $class_exists || ( $autoload_found && class_exists( $class_name ) );
41
+    return $class_exists || ( $autoload_found && class_exists( $class_name ) );
42 42
 }
43 43
 
44 44
 // Exit if classes are not available
45 45
 if ( ! ensure_class_loaded( __NAMESPACE__ . '\Core' ) ) {
46
-	return;
46
+    return;
47 47
 }
48 48
 
49 49
 add_action( 'plugins_loaded', __NAMESPACE__ . '\main' );
@@ -53,17 +53,17 @@  discard block
 block discarded – undo
53 53
  * @wp-hook plugins_loaded
54 54
  */
55 55
 function main() {
56
-	new Core();
56
+    new Core();
57 57
 
58
-	if ( is_admin() ) {
59
-		// Backend
58
+    if ( is_admin() ) {
59
+        // Backend
60 60
 
61
-		// TODO: register your backend-code here...
61
+        // TODO: register your backend-code here...
62 62
 
63
-	} else {
64
-		// Frontend
63
+    } else {
64
+        // Frontend
65 65
 
66
-		// TODO: register frontend-code here...
67
-	}
66
+        // TODO: register frontend-code here...
67
+    }
68 68
 
69 69
 }
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
 use KMM\Flattable\Core;
17 17
 
18
-if ( ! function_exists( 'add_filter' ) ) {
18
+if ( ! function_exists('add_filter')) {
19 19
 	return;
20 20
 }
21 21
 
@@ -27,26 +27,26 @@  discard block
 block discarded – undo
27 27
  *
28 28
  * @return bool
29 29
  */
30
-function ensure_class_loaded( $class_name ) {
30
+function ensure_class_loaded($class_name) {
31 31
 
32
-	$class_exists   = class_exists( $class_name );
33
-	$autoload_found = file_exists( __DIR__ . '/vendor/autoload.php' );
32
+	$class_exists   = class_exists($class_name);
33
+	$autoload_found = file_exists(__DIR__ . '/vendor/autoload.php');
34 34
 
35 35
 	// If the class does not exist, and the vendor file is there
36 36
 	// maybe the plugin was installed separately via Composer, let's try to load autoload
37
-	if ( ! $class_exists && $autoload_found ) {
37
+	if ( ! $class_exists && $autoload_found) {
38 38
 		@require_once __DIR__ . '/vendor/autoload.php';
39 39
 	}
40 40
 
41
-	return $class_exists || ( $autoload_found && class_exists( $class_name ) );
41
+	return $class_exists || ($autoload_found && class_exists($class_name));
42 42
 }
43 43
 
44 44
 // Exit if classes are not available
45
-if ( ! ensure_class_loaded( __NAMESPACE__ . '\Core' ) ) {
45
+if ( ! ensure_class_loaded(__NAMESPACE__ . '\Core')) {
46 46
 	return;
47 47
 }
48 48
 
49
-add_action( 'plugins_loaded', __NAMESPACE__ . '\main' );
49
+add_action('plugins_loaded', __NAMESPACE__ . '\main');
50 50
 
51 51
 
52 52
 /**
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 function main() {
56 56
 	new Core();
57 57
 
58
-	if ( is_admin() ) {
58
+	if (is_admin()) {
59 59
 		// Backend
60 60
 
61 61
 		// TODO: register your backend-code here...
Please login to merge, or discard this patch.
src/Core.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -41,12 +41,12 @@  discard block
 block discarded – undo
41 41
         * class-wp-rest-attachments-controller.php calls the action with $attachment as array, and also calls parent::update_item(),
42 42
         *  -> parent class is class-wp-rest-posts-controller.php, that also calls the action, but with $attachment as type WP_Post
43 43
         */
44
-        if (! $postObj instanceof \WP_Post) {
44
+        if ( ! $postObj instanceof \WP_Post) {
45 45
             return;
46 46
         }
47 47
         $_POST['post_type'] = $postObj->post_type;
48 48
         // save all the data in an anonymous function
49
-        $trigger_func = function ($response, $handler, $request) use ($postObj, $update) {
49
+        $trigger_func = function($response, $handler, $request) use ($postObj, $update) {
50 50
             // call the internal save_post after all postmeta is written
51 51
             $this->save_post($postObj->ID, $postObj, $update);
52 52
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     public function save_post($postId, $postObject, $update, $state = false)
85 85
     {
86 86
         $postType = false;
87
-        if (! $postObject) {
87
+        if ( ! $postObject) {
88 88
             //postObject not set, check if $_POST has post_type
89 89
             if (isset($_POST['post_type'])) {
90 90
                 $postType = $_POST['post_type'];
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             $postType = $postObject->post_type;
95 95
         }
96 96
         //Neither $postObject nor $_POST[post_type] set return here.
97
-        if (! $postType) {
97
+        if ( ! $postType) {
98 98
             return;
99 99
         }
100 100
 
@@ -129,11 +129,11 @@  discard block
 block discarded – undo
129 129
                 $checkRow = $this->wpdb->get_row("select post_id from $table_name where post_id=" . $postId);
130 130
                 //if we have already a published record, update it
131 131
                 $update = true;
132
-                if (! $checkRow) {
132
+                if ( ! $checkRow) {
133 133
                     $update = false;
134 134
                 }
135 135
 
136
-                if (! $update) {
136
+                if ( ! $update) {
137 137
                     //INSERT
138 138
                     $updateCols = ['post_type', 'post_id'];
139 139
                     $updateVals = ["'" . $postType . "'", $postId];
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
                 WHERE table_name = '$table_name' AND column_name = '" . $column['column'] . "'");
200 200
 
201 201
             if (empty($row)) {
202
-                if(!defined("WP_DEBUG") || !WP_DEBUG) {
202
+                if ( ! defined("WP_DEBUG") || ! WP_DEBUG) {
203 203
                     $this->wpdb->suppress_errors(true);
204 204
                 }
205 205
                 $this->wpdb->query("ALTER TABLE $table_name ADD " . $column['column'] . ' ' . $column['type']);
Please login to merge, or discard this patch.