Completed
Push — master ( 4de7f8...f6ea62 )
by
unknown
01:38
created
includes/lasso_autoloader.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,8 +115,8 @@
 block discarded – undo
115 115
 			// replace namespace separators with directory separators
116 116
 			// in the relative class name, append with .php
117 117
 			$file = $base_dir
118
-			        . str_replace('\\', '/', $relative_class)
119
-			        . '.php';
118
+					. str_replace('\\', '/', $relative_class)
119
+					. '.php';
120 120
 
121 121
 			// if the mapped file exists, require it
122 122
 			if ($this->requireFile($file)) {
Please login to merge, or discard this patch.
internal-api/auth.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,6 @@
 block discarded – undo
50 50
 	 * @param string $action The AJAX action we are processing.
51 51
 	 * @param string|object $callback_class The class to use for the callback. Either the name of the class or an instance of that class.
52 52
 	 * @param string $method The name of the callback method.
53
-
54 53
 	 */
55 54
 	public function __construct( $action, $callback_class) {
56 55
 		if ( ! is_object( $callback_class ) ) {
Please login to merge, or discard this patch.
internal-api/route.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,6 @@
 block discarded – undo
81 81
 	 *
82 82
 	 * @param string $action The AJAX action we are processing.
83 83
 	 * @param string|object $callback The class to use for the callback. Either the name of the class or an instance of that class.
84
-
85 84
 	 *
86 85
 	 * @return \lasso\internal_api\auth
87 86
 	 */
Please login to merge, or discard this patch.
admin/includes/class-tgm-plugin-activation.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1322,13 +1322,13 @@
 block discarded – undo
1322 1322
 			$key     = preg_replace( '`[^A-Za-z0-9_-]`', '', $key );
1323 1323
 
1324 1324
 			/**
1325
-			* Filter a sanitized key string.
1326
-			*
1327
-			* @since 3.0.0
1328
-			*
1329
-			* @param string $key     Sanitized key.
1330
-			* @param string $raw_key The key prior to sanitization.
1331
-			*/
1325
+			 * Filter a sanitized key string.
1326
+			 *
1327
+			 * @since 3.0.0
1328
+			 *
1329
+			 * @param string $key     Sanitized key.
1330
+			 * @param string $raw_key The key prior to sanitization.
1331
+			 */
1332 1332
 			return apply_filters( 'tgmpa_sanitize_key', $key, $raw_key );
1333 1333
 		}
1334 1334
 
Please login to merge, or discard this patch.
public/includes/tour.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -11,16 +11,16 @@  discard block
 block discarded – undo
11 11
 
12 12
 	public function __construct() {
13 13
 
14
-	    $disable_tour = lasso_editor_get_option('disable_tour', 'lasso_editor');
14
+		$disable_tour = lasso_editor_get_option('disable_tour', 'lasso_editor');
15 15
 		if (!$disable_tour) {
16
-		    add_action( 'wp_footer',       array( $this, 'draw_tour' ) );
16
+			add_action( 'wp_footer',       array( $this, 'draw_tour' ) );
17 17
 		}
18 18
 	}
19 19
 
20 20
 	/**
21
-	*	Draw the modal used to house the walk through
22
-	*	@since 0.6
23
-	*/
21
+	 *	Draw the modal used to house the walk through
22
+	 *	@since 0.6
23
+	 */
24 24
 	public function draw_tour() {
25 25
 
26 26
 		$tour_hidden = get_user_meta( get_current_user_ID(), 'lasso_hide_tour', true );
@@ -80,9 +80,9 @@  discard block
 block discarded – undo
80 80
 	}
81 81
 
82 82
 	/**
83
-	*	Draw the inner slides for the welcome walkthrough
84
-	*	@since 0.6
85
-	*/
83
+	 *	Draw the inner slides for the welcome walkthrough
84
+	 *	@since 0.6
85
+	 */
86 86
 	public function tour_slides() { ?>
87 87
 
88 88
 		<div id="lasso--loading" class="lasso--loading"><div class="lasso--loader"></div></div>
Please login to merge, or discard this patch.
public/includes/underscore-templates.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@  discard block
 block discarded – undo
11 11
 		
12 12
 		// only run on posts and pages if user is logged in
13 13
 		if ( is_user_logged_in() && lasso_user_can('edit_posts') ) { 
14
-		    if ( !class_exists( 'WP_REST_Controller' ) ) {
15
-			    // using rest api v1 
14
+			if ( !class_exists( 'WP_REST_Controller' ) ) {
15
+				// using rest api v1 
16 16
 				?>
17 17
 				<script type="text/html" id="lasso-tmpl--post">
18 18
 					<li>
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 			<?php
32 32
 			} else {
33 33
 				// using rest api v2 
34
-		    ?>
34
+			?>
35 35
 				<script type="text/html" id="lasso-tmpl--post">
36 36
 					<li>
37 37
 						<a href="<%= post.link %>" class="lasso--post-list__item <?php echo $can_delete_class;?> <%= post.status %>" data-postid="<%= post.id %>" >
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 					</li>
48 48
 				</script>
49 49
 		<?php 
50
-		    }
50
+			}
51 51
 		}
52 52
 
53 53
 	}
Please login to merge, or discard this patch.
includes/process/save.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
146 146
 	 */
147 147
 	protected function replace_rendered_shortcodes( $content ) {
148 148
 		//debug line
149
-        //file_put_contents(WP_PLUGIN_DIR."/file1.txt", $content);
149
+		//file_put_contents(WP_PLUGIN_DIR."/file1.txt", $content);
150 150
 		
151 151
 
152 152
 		if ( false === strpos( $content, '--EDITUS_OTHER_SHORTCODE_START|' ) ) {
Please login to merge, or discard this patch.
public/includes/wrap-shortcodes.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	if ( strpos( $m[2],'aesop_'  ) === 0 ) {
69 69
 		// check against the exceptions
70 70
 		if (strpos_arr($m[2],$exception_arr1)===false) {
71
-		    return $m[0];
71
+			return $m[0];
72 72
 		}
73 73
 	}
74 74
 	if (strpos_arr($m[2],$exception_arr2)!==false) {
@@ -80,9 +80,9 @@  discard block
 block discarded – undo
80 80
 
81 81
 /* a helper function */
82 82
 function strpos_arr($haystack, $needle) {
83
-    if(!is_array($needle)) $needle = array($needle);
84
-    foreach($needle as $what) {
85
-        if(($pos = strpos($haystack, $what))!==false) return $pos;
86
-    }
87
-    return false;
83
+	if(!is_array($needle)) $needle = array($needle);
84
+	foreach($needle as $what) {
85
+		if(($pos = strpos($haystack, $what))!==false) return $pos;
86
+	}
87
+	return false;
88 88
 }
89 89
\ No newline at end of file
Please login to merge, or discard this patch.
public/includes/helpers.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 		'public' => true,
244 244
 	), 'objects' );
245 245
 	$post_types = array_combine( array_keys( $post_types ), wp_list_pluck( $post_types, 'label' ) );
246
-    unset( $post_types[ 'attachment' ] );
246
+	unset( $post_types[ 'attachment' ] );
247 247
 
248 248
 	/**
249 249
 	 * Set which post types are allowed
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
 	$post_types = get_post_types( array(
271 271
 		'public' => true,
272 272
 	), 'names' );
273
-    unset( $post_types[ 'attachment' ] );
273
+	unset( $post_types[ 'attachment' ] );
274 274
 
275 275
 	/**
276 276
 	 * Set which post types are allowed
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
  */
383 383
 if ( !function_exists( 'lasso_user_can' ) ):
384 384
 	function lasso_user_can( $action = '', $postid = 0 ) {
385
-        $result = false;
385
+		$result = false;
386 386
 		if ( empty( $action ) )
387 387
 			$action = 'edit_posts';
388 388
 
@@ -397,17 +397,17 @@  discard block
 block discarded – undo
397 397
 				$allowed_post_types = array_diff($allowed_post_types,array('page'));
398 398
 			}
399 399
 			
400
-            if (!empty($allowed_post_types) && !empty($postid)) {
400
+			if (!empty($allowed_post_types) && !empty($postid)) {
401 401
 				$type = get_post_type( $postid );
402
-                $allowed_post_types = apply_filters( 'lasso_allowed_post_types', $allowed_post_types );
402
+				$allowed_post_types = apply_filters( 'lasso_allowed_post_types', $allowed_post_types );
403 403
 				
404
-                if ( in_array( $type, $allowed_post_types ) ) {
404
+				if ( in_array( $type, $allowed_post_types ) ) {
405 405
 				   $result =  true;
406
-			    }
407
-            } else {
408
-                //we are not checking against a post, return true
406
+				}
407
+			} else {
408
+				//we are not checking against a post, return true
409 409
 				$result =  true;
410
-        	}
410
+			}
411 411
 		} else {
412 412
 			$result = false;
413 413
 		}
Please login to merge, or discard this patch.