Completed
Pull Request — develop (#1412)
by
unknown
55s
created
src/includes/class-wordlift-i18n.php 2 patches
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -26,38 +26,38 @@
 block discarded – undo
26 26
  */
27 27
 class Wordlift_i18n {
28 28
 
29
-	/**
30
-	 * The domain specified for this plugin.
31
-	 *
32
-	 * @since    1.0.0
33
-	 * @access   private
34
-	 * @var      string    $domain    The domain identifier for this plugin.
35
-	 */
36
-	private $domain;
37
-
38
-	/**
39
-	 * Load the plugin text domain for translation.
40
-	 *
41
-	 * @since    1.0.0
42
-	 */
43
-	public function load_plugin_textdomain() {
44
-
45
-		load_plugin_textdomain(
46
-			$this->domain,
47
-			false,
48
-			dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
49
-		);
50
-
51
-	}
52
-
53
-	/**
54
-	 * Set the domain equal to that of the specified domain.
55
-	 *
56
-	 * @since    1.0.0
57
-	 * @param    string    $domain    The domain that represents the locale of this plugin.
58
-	 */
59
-	public function set_domain( $domain ) {
60
-		$this->domain = $domain;
61
-	}
29
+    /**
30
+     * The domain specified for this plugin.
31
+     *
32
+     * @since    1.0.0
33
+     * @access   private
34
+     * @var      string    $domain    The domain identifier for this plugin.
35
+     */
36
+    private $domain;
37
+
38
+    /**
39
+     * Load the plugin text domain for translation.
40
+     *
41
+     * @since    1.0.0
42
+     */
43
+    public function load_plugin_textdomain() {
44
+
45
+        load_plugin_textdomain(
46
+            $this->domain,
47
+            false,
48
+            dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
49
+        );
50
+
51
+    }
52
+
53
+    /**
54
+     * Set the domain equal to that of the specified domain.
55
+     *
56
+     * @since    1.0.0
57
+     * @param    string    $domain    The domain that represents the locale of this plugin.
58
+     */
59
+    public function set_domain( $domain ) {
60
+        $this->domain = $domain;
61
+    }
62 62
 
63 63
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 		load_plugin_textdomain(
46 46
 			$this->domain,
47 47
 			false,
48
-			dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
48
+			dirname(dirname(plugin_basename(__FILE__))).'/languages/'
49 49
 		);
50 50
 
51 51
 	}
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 	 * @since    1.0.0
57 57
 	 * @param    string    $domain    The domain that represents the locale of this plugin.
58 58
 	 */
59
-	public function set_domain( $domain ) {
59
+	public function set_domain($domain) {
60 60
 		$this->domain = $domain;
61 61
 	}
62 62
 
Please login to merge, or discard this patch.
src/includes/class-wordlift-loader.php 2 patches
Indentation   +102 added lines, -102 removed lines patch added patch discarded remove patch
@@ -23,107 +23,107 @@
 block discarded – undo
23 23
  */
24 24
 class Wordlift_Loader {
25 25
 
26
-	/**
27
-	 * The array of actions registered with WordPress.
28
-	 *
29
-	 * @since    1.0.0
30
-	 * @access   protected
31
-	 * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
32
-	 */
33
-	protected $actions;
34
-
35
-	/**
36
-	 * The array of filters registered with WordPress.
37
-	 *
38
-	 * @since    1.0.0
39
-	 * @access   protected
40
-	 * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
41
-	 */
42
-	protected $filters;
43
-
44
-	/**
45
-	 * Initialize the collections used to maintain the actions and filters.
46
-	 *
47
-	 * @since    1.0.0
48
-	 */
49
-	public function __construct() {
50
-
51
-		$this->actions = array();
52
-		$this->filters = array();
53
-
54
-	}
55
-
56
-	/**
57
-	 * Add a new action to the collection to be registered with WordPress.
58
-	 *
59
-	 * @since    1.0.0
60
-	 * @param    string               $hook             The name of the WordPress action that is being registered.
61
-	 * @param    object               $component        A reference to the instance of the object on which the action is defined.
62
-	 * @param    string               $callback         The name of the function definition on the $component.
63
-	 * @param    int                  $priority         Optional. he priority at which the function should be fired. Default is 10.
64
-	 * @param    int                  $accepted_args    Optional. The number of arguments that should be passed to the $callback. Default is 1.
65
-	 */
66
-	public function add_action( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) {
67
-		$this->actions = $this->add( $this->actions, $hook, $component, $callback, $priority, $accepted_args );
68
-	}
69
-
70
-	/**
71
-	 * Add a new filter to the collection to be registered with WordPress.
72
-	 *
73
-	 * @since    1.0.0
74
-	 * @param    string               $hook             The name of the WordPress filter that is being registered.
75
-	 * @param    object               $component        A reference to the instance of the object on which the filter is defined.
76
-	 * @param    string               $callback         The name of the function definition on the $component.
77
-	 * @param    int                  $priority         Optional. he priority at which the function should be fired. Default is 10.
78
-	 * @param    int                  $accepted_args    Optional. The number of arguments that should be passed to the $callback. Default is 1
79
-	 */
80
-	public function add_filter( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) {
81
-		$this->filters = $this->add( $this->filters, $hook, $component, $callback, $priority, $accepted_args );
82
-	}
83
-
84
-	/**
85
-	 * A utility function that is used to register the actions and hooks into a single
86
-	 * collection.
87
-	 *
88
-	 * @since    1.0.0
89
-	 * @access   private
90
-	 * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
91
-	 * @param    string               $hook             The name of the WordPress filter that is being registered.
92
-	 * @param    object               $component        A reference to the instance of the object on which the filter is defined.
93
-	 * @param    string               $callback         The name of the function definition on the $component.
94
-	 * @param    int                  $priority         The priority at which the function should be fired.
95
-	 * @param    int                  $accepted_args    The number of arguments that should be passed to the $callback.
96
-	 * @return   array                                  The collection of actions and filters registered with WordPress.
97
-	 */
98
-	private function add( $hooks, $hook, $component, $callback, $priority, $accepted_args ) {
99
-
100
-		$hooks[] = array(
101
-			'hook'          => $hook,
102
-			'component'     => $component,
103
-			'callback'      => $callback,
104
-			'priority'      => $priority,
105
-			'accepted_args' => $accepted_args
106
-		);
107
-
108
-		return $hooks;
109
-
110
-	}
111
-
112
-	/**
113
-	 * Register the filters and actions with WordPress.
114
-	 *
115
-	 * @since    1.0.0
116
-	 */
117
-	public function run() {
118
-
119
-		foreach ( $this->filters as $hook ) {
120
-			add_filter( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
121
-		}
122
-
123
-		foreach ( $this->actions as $hook ) {
124
-			add_action( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
125
-		}
126
-
127
-	}
26
+    /**
27
+     * The array of actions registered with WordPress.
28
+     *
29
+     * @since    1.0.0
30
+     * @access   protected
31
+     * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
32
+     */
33
+    protected $actions;
34
+
35
+    /**
36
+     * The array of filters registered with WordPress.
37
+     *
38
+     * @since    1.0.0
39
+     * @access   protected
40
+     * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
41
+     */
42
+    protected $filters;
43
+
44
+    /**
45
+     * Initialize the collections used to maintain the actions and filters.
46
+     *
47
+     * @since    1.0.0
48
+     */
49
+    public function __construct() {
50
+
51
+        $this->actions = array();
52
+        $this->filters = array();
53
+
54
+    }
55
+
56
+    /**
57
+     * Add a new action to the collection to be registered with WordPress.
58
+     *
59
+     * @since    1.0.0
60
+     * @param    string               $hook             The name of the WordPress action that is being registered.
61
+     * @param    object               $component        A reference to the instance of the object on which the action is defined.
62
+     * @param    string               $callback         The name of the function definition on the $component.
63
+     * @param    int                  $priority         Optional. he priority at which the function should be fired. Default is 10.
64
+     * @param    int                  $accepted_args    Optional. The number of arguments that should be passed to the $callback. Default is 1.
65
+     */
66
+    public function add_action( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) {
67
+        $this->actions = $this->add( $this->actions, $hook, $component, $callback, $priority, $accepted_args );
68
+    }
69
+
70
+    /**
71
+     * Add a new filter to the collection to be registered with WordPress.
72
+     *
73
+     * @since    1.0.0
74
+     * @param    string               $hook             The name of the WordPress filter that is being registered.
75
+     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
76
+     * @param    string               $callback         The name of the function definition on the $component.
77
+     * @param    int                  $priority         Optional. he priority at which the function should be fired. Default is 10.
78
+     * @param    int                  $accepted_args    Optional. The number of arguments that should be passed to the $callback. Default is 1
79
+     */
80
+    public function add_filter( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) {
81
+        $this->filters = $this->add( $this->filters, $hook, $component, $callback, $priority, $accepted_args );
82
+    }
83
+
84
+    /**
85
+     * A utility function that is used to register the actions and hooks into a single
86
+     * collection.
87
+     *
88
+     * @since    1.0.0
89
+     * @access   private
90
+     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
91
+     * @param    string               $hook             The name of the WordPress filter that is being registered.
92
+     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
93
+     * @param    string               $callback         The name of the function definition on the $component.
94
+     * @param    int                  $priority         The priority at which the function should be fired.
95
+     * @param    int                  $accepted_args    The number of arguments that should be passed to the $callback.
96
+     * @return   array                                  The collection of actions and filters registered with WordPress.
97
+     */
98
+    private function add( $hooks, $hook, $component, $callback, $priority, $accepted_args ) {
99
+
100
+        $hooks[] = array(
101
+            'hook'          => $hook,
102
+            'component'     => $component,
103
+            'callback'      => $callback,
104
+            'priority'      => $priority,
105
+            'accepted_args' => $accepted_args
106
+        );
107
+
108
+        return $hooks;
109
+
110
+    }
111
+
112
+    /**
113
+     * Register the filters and actions with WordPress.
114
+     *
115
+     * @since    1.0.0
116
+     */
117
+    public function run() {
118
+
119
+        foreach ( $this->filters as $hook ) {
120
+            add_filter( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
121
+        }
122
+
123
+        foreach ( $this->actions as $hook ) {
124
+            add_action( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
125
+        }
126
+
127
+    }
128 128
 
129 129
 }
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -63,8 +63,8 @@  discard block
 block discarded – undo
63 63
 	 * @param    int                  $priority         Optional. he priority at which the function should be fired. Default is 10.
64 64
 	 * @param    int                  $accepted_args    Optional. The number of arguments that should be passed to the $callback. Default is 1.
65 65
 	 */
66
-	public function add_action( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) {
67
-		$this->actions = $this->add( $this->actions, $hook, $component, $callback, $priority, $accepted_args );
66
+	public function add_action($hook, $component, $callback, $priority = 10, $accepted_args = 1) {
67
+		$this->actions = $this->add($this->actions, $hook, $component, $callback, $priority, $accepted_args);
68 68
 	}
69 69
 
70 70
 	/**
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
 	 * @param    int                  $priority         Optional. he priority at which the function should be fired. Default is 10.
78 78
 	 * @param    int                  $accepted_args    Optional. The number of arguments that should be passed to the $callback. Default is 1
79 79
 	 */
80
-	public function add_filter( $hook, $component, $callback, $priority = 10, $accepted_args = 1 ) {
81
-		$this->filters = $this->add( $this->filters, $hook, $component, $callback, $priority, $accepted_args );
80
+	public function add_filter($hook, $component, $callback, $priority = 10, $accepted_args = 1) {
81
+		$this->filters = $this->add($this->filters, $hook, $component, $callback, $priority, $accepted_args);
82 82
 	}
83 83
 
84 84
 	/**
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 	 * @param    int                  $accepted_args    The number of arguments that should be passed to the $callback.
96 96
 	 * @return   array                                  The collection of actions and filters registered with WordPress.
97 97
 	 */
98
-	private function add( $hooks, $hook, $component, $callback, $priority, $accepted_args ) {
98
+	private function add($hooks, $hook, $component, $callback, $priority, $accepted_args) {
99 99
 
100 100
 		$hooks[] = array(
101 101
 			'hook'          => $hook,
@@ -116,12 +116,12 @@  discard block
 block discarded – undo
116 116
 	 */
117 117
 	public function run() {
118 118
 
119
-		foreach ( $this->filters as $hook ) {
120
-			add_filter( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
119
+		foreach ($this->filters as $hook) {
120
+			add_filter($hook['hook'], array($hook['component'], $hook['callback']), $hook['priority'], $hook['accepted_args']);
121 121
 		}
122 122
 
123
-		foreach ( $this->actions as $hook ) {
124
-			add_action( $hook['hook'], array( $hook['component'], $hook['callback'] ), $hook['priority'], $hook['accepted_args'] );
123
+		foreach ($this->actions as $hook) {
124
+			add_action($hook['hook'], array($hook['component'], $hook['callback']), $hook['priority'], $hook['accepted_args']);
125 125
 		}
126 126
 
127 127
 	}
Please login to merge, or discard this patch.
src/shortcodes/wordlift_shortcode_field.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -9,28 +9,28 @@  discard block
 block discarded – undo
9 9
  * @param array $atts An array of shortcode attributes.
10 10
  * @return string A dom element with requested property value(s).
11 11
  */
12
-function wl_shortcode_field( $atts ) {
12
+function wl_shortcode_field($atts) {
13 13
 	
14 14
     // Extract attributes and set default values.
15
-    $field_atts = shortcode_atts( array(
15
+    $field_atts = shortcode_atts(array(
16 16
         'id'    => null,
17 17
         'name'  => null
18
-    ), $atts );
18
+    ), $atts);
19 19
     
20 20
     // Get id of the post
21 21
     $entity_id = $field_atts['id'];
22
-    if( is_null( $field_atts['id'] ) || !is_numeric( $field_atts['id'] ) ) {
22
+    if (is_null($field_atts['id']) || ! is_numeric($field_atts['id'])) {
23 23
         $entity_id = get_the_ID();
24 24
     }
25 25
 
26 26
     $property_name = $field_atts['name'];
27
-    if( !is_null( $property_name ) ) {
28
-        $values = wl_schema_get_value( $entity_id, $property_name );
27
+    if ( ! is_null($property_name)) {
28
+        $values = wl_schema_get_value($entity_id, $property_name);
29 29
     }
30 30
     
31 31
     // Return
32
-    if( is_array( $values ) ) {
33
-        return implode( ', ', $values );
32
+    if (is_array($values)) {
33
+        return implode(', ', $values);
34 34
     } else {
35 35
         return null;
36 36
     }
@@ -40,5 +40,5 @@  discard block
 block discarded – undo
40 40
     add_shortcode('wl_field', 'wl_shortcode_field');
41 41
 }
42 42
 
43
-add_action( 'init', 'wl_register_shortcode_field');
43
+add_action('init', 'wl_register_shortcode_field');
44 44
 
Please login to merge, or discard this patch.
src/includes/class-wordlift-ui-service.php 2 patches
Indentation   +64 added lines, -64 removed lines patch added patch discarded remove patch
@@ -7,80 +7,80 @@
 block discarded – undo
7 7
  */
8 8
 class Wordlift_UI_Service {
9 9
 
10
-	/**
11
-	 * The button element HTML code.
12
-	 *
13
-	 * @since 3.2.0
14
-	 */
15
-	const BUTTON_HTML = '<a id="%s" class="button wl-button">%s</a>';
10
+    /**
11
+     * The button element HTML code.
12
+     *
13
+     * @since 3.2.0
14
+     */
15
+    const BUTTON_HTML = '<a id="%s" class="button wl-button">%s</a>';
16 16
 
17
-	/**
18
-	 * The template HTML code.
19
-	 *
20
-	 * @since 3.2.0
21
-	 */
22
-	const TEMPLATE_HTML = '<script id="%s" type="text/template">%s</script>';
17
+    /**
18
+     * The template HTML code.
19
+     *
20
+     * @since 3.2.0
21
+     */
22
+    const TEMPLATE_HTML = '<script id="%s" type="text/template">%s</script>';
23 23
 
24
-	/**
25
-	 * Get the button HTML.
26
-	 *
27
-	 * @since 3.2.0
28
-	 *
29
-	 * @param string $element_id The button element id.
30
-	 * @param string $label The button (translated) label.
31
-	 *
32
-	 * @return string The button HTML code.
33
-	 */
34
-	public function get_button_html( $element_id, $label ) {
24
+    /**
25
+     * Get the button HTML.
26
+     *
27
+     * @since 3.2.0
28
+     *
29
+     * @param string $element_id The button element id.
30
+     * @param string $label The button (translated) label.
31
+     *
32
+     * @return string The button HTML code.
33
+     */
34
+    public function get_button_html( $element_id, $label ) {
35 35
 
36
-		return sprintf( self::BUTTON_HTML, $element_id, esc_html( $label ) );
37
-	}
36
+        return sprintf( self::BUTTON_HTML, $element_id, esc_html( $label ) );
37
+    }
38 38
 
39
-	/**
40
-	 * Echo the button HTML.
41
-	 *
42
-	 * @since 3.2.0
43
-	 *
44
-	 * @param string $element_id The button element id.
45
-	 * @param string $label The button (translated) label.
46
-	 *
47
-	 * @return string The button HTML code.
48
-	 */
49
-	public function print_button( $element_id, $label ) {
39
+    /**
40
+     * Echo the button HTML.
41
+     *
42
+     * @since 3.2.0
43
+     *
44
+     * @param string $element_id The button element id.
45
+     * @param string $label The button (translated) label.
46
+     *
47
+     * @return string The button HTML code.
48
+     */
49
+    public function print_button( $element_id, $label ) {
50 50
 
51
-		echo( $this->get_button_html( $element_id, $label ) );
51
+        echo( $this->get_button_html( $element_id, $label ) );
52 52
 
53
-	}
53
+    }
54 54
 
55
-	/**
56
-	 * Get the HTML code for a template tag.
57
-	 *
58
-	 * @since 3.2.0
59
-	 *
60
-	 * @param string $element_id The element id.
61
-	 * @param string $body The element content.
62
-	 *
63
-	 * @return string The HTML code.
64
-	 */
65
-	public function get_template_html( $element_id, $body ) {
55
+    /**
56
+     * Get the HTML code for a template tag.
57
+     *
58
+     * @since 3.2.0
59
+     *
60
+     * @param string $element_id The element id.
61
+     * @param string $body The element content.
62
+     *
63
+     * @return string The HTML code.
64
+     */
65
+    public function get_template_html( $element_id, $body ) {
66 66
 
67
-		return sprintf( self::TEMPLATE_HTML, $element_id, $body );
68
-	}
67
+        return sprintf( self::TEMPLATE_HTML, $element_id, $body );
68
+    }
69 69
 
70
-	/**
71
-	 * Echo the HTML code for a template tag.
72
-	 *
73
-	 * @since 3.2.0
74
-	 *
75
-	 * @param string $element_id The element id.
76
-	 * @param string $body The element content.
77
-	 *
78
-	 * @return string The HTML code.
79
-	 */
80
-	public function print_template( $element_id, $body ) {
70
+    /**
71
+     * Echo the HTML code for a template tag.
72
+     *
73
+     * @since 3.2.0
74
+     *
75
+     * @param string $element_id The element id.
76
+     * @param string $body The element content.
77
+     *
78
+     * @return string The HTML code.
79
+     */
80
+    public function print_template( $element_id, $body ) {
81 81
 
82
-		echo( $this->get_template_html( $element_id, $body ) );
82
+        echo( $this->get_template_html( $element_id, $body ) );
83 83
 
84
-	}
84
+    }
85 85
 
86 86
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -31,9 +31,9 @@  discard block
 block discarded – undo
31 31
 	 *
32 32
 	 * @return string The button HTML code.
33 33
 	 */
34
-	public function get_button_html( $element_id, $label ) {
34
+	public function get_button_html($element_id, $label) {
35 35
 
36
-		return sprintf( self::BUTTON_HTML, $element_id, esc_html( $label ) );
36
+		return sprintf(self::BUTTON_HTML, $element_id, esc_html($label));
37 37
 	}
38 38
 
39 39
 	/**
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
 	 *
47 47
 	 * @return string The button HTML code.
48 48
 	 */
49
-	public function print_button( $element_id, $label ) {
49
+	public function print_button($element_id, $label) {
50 50
 
51
-		echo( $this->get_button_html( $element_id, $label ) );
51
+		echo($this->get_button_html($element_id, $label));
52 52
 
53 53
 	}
54 54
 
@@ -62,9 +62,9 @@  discard block
 block discarded – undo
62 62
 	 *
63 63
 	 * @return string The HTML code.
64 64
 	 */
65
-	public function get_template_html( $element_id, $body ) {
65
+	public function get_template_html($element_id, $body) {
66 66
 
67
-		return sprintf( self::TEMPLATE_HTML, $element_id, $body );
67
+		return sprintf(self::TEMPLATE_HTML, $element_id, $body);
68 68
 	}
69 69
 
70 70
 	/**
@@ -77,9 +77,9 @@  discard block
 block discarded – undo
77 77
 	 *
78 78
 	 * @return string The HTML code.
79 79
 	 */
80
-	public function print_template( $element_id, $body ) {
80
+	public function print_template($element_id, $body) {
81 81
 
82
-		echo( $this->get_template_html( $element_id, $body ) );
82
+		echo($this->get_template_html($element_id, $body));
83 83
 
84 84
 	}
85 85
 
Please login to merge, or discard this patch.
src/admin/class-wordlift-primashop-adapter.php 2 patches
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -7,33 +7,33 @@
 block discarded – undo
7 7
  */
8 8
 class Wordlift_PrimaShop_Adapter {
9 9
 
10
-	/**
11
-	 * Create a Wordlift_PrimaShop_Adapter instance.
12
-	 *
13
-	 * @since 3.2.3
14
-	 */
15
-	public function __construct() {
10
+    /**
11
+     * Create a Wordlift_PrimaShop_Adapter instance.
12
+     *
13
+     * @since 3.2.3
14
+     */
15
+    public function __construct() {
16 16
 
17
-		// Tell WP (and PrimaShop) that we support the *prima-layout-settings*. This will display the Content Settings
18
-		// in the entity edit page.
19
-		add_post_type_support( Wordlift_Entity_Service::TYPE_NAME, 'prima-layout-settings' );
17
+        // Tell WP (and PrimaShop) that we support the *prima-layout-settings*. This will display the Content Settings
18
+        // in the entity edit page.
19
+        add_post_type_support( Wordlift_Entity_Service::TYPE_NAME, 'prima-layout-settings' );
20 20
 
21
-	}
21
+    }
22 22
 
23
-	/**
24
-	 * Intercept the <em>prima_metabox_entity_header_args</em> filter and return what a call to the related <em>post</em>
25
-	 * would have returned.
26
-	 *
27
-	 * @since 3.2.3
28
-	 *
29
-	 * @param array $meta The meta array.
30
-	 * @param string $ype The post type.
31
-	 *
32
-	 * @return array A meta array.
33
-	 */
34
-	function prima_metabox_entity_header_args( $meta, $ype ) {
23
+    /**
24
+     * Intercept the <em>prima_metabox_entity_header_args</em> filter and return what a call to the related <em>post</em>
25
+     * would have returned.
26
+     *
27
+     * @since 3.2.3
28
+     *
29
+     * @param array $meta The meta array.
30
+     * @param string $ype The post type.
31
+     *
32
+     * @return array A meta array.
33
+     */
34
+    function prima_metabox_entity_header_args( $meta, $ype ) {
35 35
 
36
-		return apply_filters( "prima_metabox_post_header_args", $meta, 'post' );
37
-	}
36
+        return apply_filters( "prima_metabox_post_header_args", $meta, 'post' );
37
+    }
38 38
 
39 39
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
 		// Tell WP (and PrimaShop) that we support the *prima-layout-settings*. This will display the Content Settings
18 18
 		// in the entity edit page.
19
-		add_post_type_support( Wordlift_Entity_Service::TYPE_NAME, 'prima-layout-settings' );
19
+		add_post_type_support(Wordlift_Entity_Service::TYPE_NAME, 'prima-layout-settings');
20 20
 
21 21
 	}
22 22
 
@@ -31,9 +31,9 @@  discard block
 block discarded – undo
31 31
 	 *
32 32
 	 * @return array A meta array.
33 33
 	 */
34
-	function prima_metabox_entity_header_args( $meta, $ype ) {
34
+	function prima_metabox_entity_header_args($meta, $ype) {
35 35
 
36
-		return apply_filters( "prima_metabox_post_header_args", $meta, 'post' );
36
+		return apply_filters("prima_metabox_post_header_args", $meta, 'post');
37 37
 	}
38 38
 
39 39
 }
Please login to merge, or discard this patch.
src/wordlift_manual_translations.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 // File created to manage some dynamic translation used in the code
4 4
 // See http://keithdevon.com/using-variables-wordpress-translation-functions/
5 5
 
6
-__( 'There are no related posts for the current entity.', 'wordlift' );
7
-__( 'This entity has not description.', 'wordlift' );
8
-__( 'There are no related entities for the current entity.', 'wordlift' );
9
-__( 'This entity is not published. It will not appear within analysis results.', 'wordlift' );
10
-__( 'This entity has no featured image yet.', 'wordlift' );
11
-__( 'There are no sameAs configured for this entity.', 'wordlift' );
12
-__( 'Schema.org metadata for this entity are not completed.', 'wordlift' );
6
+__('There are no related posts for the current entity.', 'wordlift');
7
+__('This entity has not description.', 'wordlift');
8
+__('There are no related entities for the current entity.', 'wordlift');
9
+__('This entity is not published. It will not appear within analysis results.', 'wordlift');
10
+__('This entity has no featured image yet.', 'wordlift');
11
+__('There are no sameAs configured for this entity.', 'wordlift');
12
+__('Schema.org metadata for this entity are not completed.', 'wordlift');
13 13
 
Please login to merge, or discard this patch.
src/public/class-wordlift-shortcode.php 2 patches
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -8,50 +8,50 @@
 block discarded – undo
8 8
  */
9 9
 abstract class Wordlift_Shortcode {
10 10
 
11
-	/**
12
-	 * The shortcode, set by extending classes.
13
-	 */
14
-	const SHORTCODE = NULL;
15
-
16
-	/**
17
-	 * Create a shortcode instance by registering the shortcode with the render
18
-	 * function.
19
-	 *
20
-	 * @since 3.5.4
21
-	 */
22
-	public function __construct() {
23
-
24
-		add_shortcode( static::SHORTCODE, array( $this, 'render' ) );
25
-
26
-	}
27
-
28
-	/**
29
-	 * Render the shortcode.
30
-	 *
31
-	 * @since 3.5.4
32
-	 *
33
-	 * @param array $atts An array of shortcode attributes as set by the editor.
34
-	 *
35
-	 * @return string The output html code.
36
-	 */
37
-	public abstract function render( $atts );
38
-
39
-	/**
40
-	 * Enqueue scripts. Called by the shortcode implementations in their render
41
-	 * method.
42
-	 *
43
-	 * @since 3.5.4
44
-	 */
45
-	protected function enqueue_scripts() {
46
-
47
-		wp_enqueue_script( 'angularjs', 'https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.11/angular.min.js' );
48
-		wp_enqueue_script( 'angularjs-touch', 'https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.11/angular-touch.min.js', array( 'angularjs' ) );
49
-		wp_enqueue_script( 'wordlift-ui', dirname( plugin_dir_url( __FILE__ ) ) . '/js/wordlift-ui' . ( ! defined( 'SCRIPT_DEBUG' ) || ! SCRIPT_DEBUG ? '.min' : '' ) . '.js', array(
50
-			'jquery',
51
-			'angularjs',
52
-			'angularjs-touch'
53
-		) );
54
-
55
-	}
11
+    /**
12
+     * The shortcode, set by extending classes.
13
+     */
14
+    const SHORTCODE = NULL;
15
+
16
+    /**
17
+     * Create a shortcode instance by registering the shortcode with the render
18
+     * function.
19
+     *
20
+     * @since 3.5.4
21
+     */
22
+    public function __construct() {
23
+
24
+        add_shortcode( static::SHORTCODE, array( $this, 'render' ) );
25
+
26
+    }
27
+
28
+    /**
29
+     * Render the shortcode.
30
+     *
31
+     * @since 3.5.4
32
+     *
33
+     * @param array $atts An array of shortcode attributes as set by the editor.
34
+     *
35
+     * @return string The output html code.
36
+     */
37
+    public abstract function render( $atts );
38
+
39
+    /**
40
+     * Enqueue scripts. Called by the shortcode implementations in their render
41
+     * method.
42
+     *
43
+     * @since 3.5.4
44
+     */
45
+    protected function enqueue_scripts() {
46
+
47
+        wp_enqueue_script( 'angularjs', 'https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.11/angular.min.js' );
48
+        wp_enqueue_script( 'angularjs-touch', 'https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.11/angular-touch.min.js', array( 'angularjs' ) );
49
+        wp_enqueue_script( 'wordlift-ui', dirname( plugin_dir_url( __FILE__ ) ) . '/js/wordlift-ui' . ( ! defined( 'SCRIPT_DEBUG' ) || ! SCRIPT_DEBUG ? '.min' : '' ) . '.js', array(
50
+            'jquery',
51
+            'angularjs',
52
+            'angularjs-touch'
53
+        ) );
54
+
55
+    }
56 56
 
57 57
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	 */
22 22
 	public function __construct() {
23 23
 
24
-		add_shortcode( static::SHORTCODE, array( $this, 'render' ) );
24
+		add_shortcode(static::SHORTCODE, array($this, 'render'));
25 25
 
26 26
 	}
27 27
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	 *
35 35
 	 * @return string The output html code.
36 36
 	 */
37
-	public abstract function render( $atts );
37
+	public abstract function render($atts);
38 38
 
39 39
 	/**
40 40
 	 * Enqueue scripts. Called by the shortcode implementations in their render
@@ -44,13 +44,13 @@  discard block
 block discarded – undo
44 44
 	 */
45 45
 	protected function enqueue_scripts() {
46 46
 
47
-		wp_enqueue_script( 'angularjs', 'https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.11/angular.min.js' );
48
-		wp_enqueue_script( 'angularjs-touch', 'https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.11/angular-touch.min.js', array( 'angularjs' ) );
49
-		wp_enqueue_script( 'wordlift-ui', dirname( plugin_dir_url( __FILE__ ) ) . '/js/wordlift-ui' . ( ! defined( 'SCRIPT_DEBUG' ) || ! SCRIPT_DEBUG ? '.min' : '' ) . '.js', array(
47
+		wp_enqueue_script('angularjs', 'https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.11/angular.min.js');
48
+		wp_enqueue_script('angularjs-touch', 'https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.11/angular-touch.min.js', array('angularjs'));
49
+		wp_enqueue_script('wordlift-ui', dirname(plugin_dir_url(__FILE__)).'/js/wordlift-ui'.( ! defined('SCRIPT_DEBUG') || ! SCRIPT_DEBUG ? '.min' : '').'.js', array(
50 50
 			'jquery',
51 51
 			'angularjs',
52 52
 			'angularjs-touch'
53
-		) );
53
+		));
54 54
 
55 55
 	}
56 56
 
Please login to merge, or discard this patch.
src/includes/properties/class-wordlift-property-getter.php 2 patches
Indentation   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -9,72 +9,72 @@
 block discarded – undo
9 9
  */
10 10
 class Wordlift_Property_Getter {
11 11
 
12
-	/**
13
-	 * An array of {@link Wordlift_Simple_Property_Service}s which can access a
14
-	 * property.
15
-	 *
16
-	 * @since 3.8.0
17
-	 * @access private
18
-	 * @var Wordlift_Simple_Property_Service[] $services An array of {@link Wordlift_Simple_Property_Service}s.
19
-	 */
20
-	private $services = array();
12
+    /**
13
+     * An array of {@link Wordlift_Simple_Property_Service}s which can access a
14
+     * property.
15
+     *
16
+     * @since 3.8.0
17
+     * @access private
18
+     * @var Wordlift_Simple_Property_Service[] $services An array of {@link Wordlift_Simple_Property_Service}s.
19
+     */
20
+    private $services = array();
21 21
 
22
-	/**
23
-	 * The default {@link Wordlift_Simple_Property_Service} which is used to access
24
-	 * a property when no specific {@link Wordlift_Simple_Property_Service} is found
25
-	 * in the {@see $services} array.
26
-	 * @var Wordlift_Simple_Property_Service
27
-	 */
28
-	private $default;
22
+    /**
23
+     * The default {@link Wordlift_Simple_Property_Service} which is used to access
24
+     * a property when no specific {@link Wordlift_Simple_Property_Service} is found
25
+     * in the {@see $services} array.
26
+     * @var Wordlift_Simple_Property_Service
27
+     */
28
+    private $default;
29 29
 
30
-	/**
31
-	 * Create a property service with the provided {@link Wordlift_Simple_Property_Service}
32
-	 * as default.
33
-	 *
34
-	 * @since 3.8.0
35
-	 *
36
-	 * @param $default
37
-	 */
38
-	public function __construct( $default ) {
30
+    /**
31
+     * Create a property service with the provided {@link Wordlift_Simple_Property_Service}
32
+     * as default.
33
+     *
34
+     * @since 3.8.0
35
+     *
36
+     * @param $default
37
+     */
38
+    public function __construct( $default ) {
39 39
 
40
-		$this->default = $default;
40
+        $this->default = $default;
41 41
 
42
-	}
42
+    }
43 43
 
44
-	/**
45
-	 * Register a {@link Wordlift_Simple_Property_Service} for the specified meta keys.
46
-	 *
47
-	 * @since 3.8.0
48
-	 *
49
-	 * @param \Wordlift_Simple_Property_Service $property_service A {@link Wordlift_Simple_Property_Service} instance.
50
-	 * @param array $meta_keys An array of meta keys that the provided {@link Wordlift_Simple_Property_Service} will handle.
51
-	 */
52
-	public function register( $property_service, $meta_keys ) {
44
+    /**
45
+     * Register a {@link Wordlift_Simple_Property_Service} for the specified meta keys.
46
+     *
47
+     * @since 3.8.0
48
+     *
49
+     * @param \Wordlift_Simple_Property_Service $property_service A {@link Wordlift_Simple_Property_Service} instance.
50
+     * @param array $meta_keys An array of meta keys that the provided {@link Wordlift_Simple_Property_Service} will handle.
51
+     */
52
+    public function register( $property_service, $meta_keys ) {
53 53
 
54
-		// Register the specified property service for each meta key.
55
-		foreach ( $meta_keys as $meta_key ) {
56
-			$this->services[ $meta_key ] = $property_service;
57
-		}
54
+        // Register the specified property service for each meta key.
55
+        foreach ( $meta_keys as $meta_key ) {
56
+            $this->services[ $meta_key ] = $property_service;
57
+        }
58 58
 
59
-	}
59
+    }
60 60
 
61
-	/**
62
-	 * Get the value for the specified entity post id and WP's meta key.
63
-	 *
64
-	 * @since 3.8.0
65
-	 *
66
-	 * @param int $post_id The post id.
67
-	 * @param string $meta_key The meta key.
68
-	 *
69
-	 * @return mixed|null The property value or null.
70
-	 */
71
-	public function get( $post_id, $meta_key ) {
61
+    /**
62
+     * Get the value for the specified entity post id and WP's meta key.
63
+     *
64
+     * @since 3.8.0
65
+     *
66
+     * @param int $post_id The post id.
67
+     * @param string $meta_key The meta key.
68
+     *
69
+     * @return mixed|null The property value or null.
70
+     */
71
+    public function get( $post_id, $meta_key ) {
72 72
 
73
-		return isset( $this->services[ $meta_key ] )
74
-			// Use a specific property service.
75
-			? $this->services[ $meta_key ]->get( $post_id, $meta_key )
76
-			// Use the default property service.
77
-			: $this->default->get( $post_id, $meta_key );
78
-	}
73
+        return isset( $this->services[ $meta_key ] )
74
+            // Use a specific property service.
75
+            ? $this->services[ $meta_key ]->get( $post_id, $meta_key )
76
+            // Use the default property service.
77
+            : $this->default->get( $post_id, $meta_key );
78
+    }
79 79
 
80 80
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 	 *
36 36
 	 * @param $default
37 37
 	 */
38
-	public function __construct( $default ) {
38
+	public function __construct($default) {
39 39
 
40 40
 		$this->default = $default;
41 41
 
@@ -49,11 +49,11 @@  discard block
 block discarded – undo
49 49
 	 * @param \Wordlift_Simple_Property_Service $property_service A {@link Wordlift_Simple_Property_Service} instance.
50 50
 	 * @param array $meta_keys An array of meta keys that the provided {@link Wordlift_Simple_Property_Service} will handle.
51 51
 	 */
52
-	public function register( $property_service, $meta_keys ) {
52
+	public function register($property_service, $meta_keys) {
53 53
 
54 54
 		// Register the specified property service for each meta key.
55
-		foreach ( $meta_keys as $meta_key ) {
56
-			$this->services[ $meta_key ] = $property_service;
55
+		foreach ($meta_keys as $meta_key) {
56
+			$this->services[$meta_key] = $property_service;
57 57
 		}
58 58
 
59 59
 	}
@@ -68,13 +68,13 @@  discard block
 block discarded – undo
68 68
 	 *
69 69
 	 * @return mixed|null The property value or null.
70 70
 	 */
71
-	public function get( $post_id, $meta_key ) {
71
+	public function get($post_id, $meta_key) {
72 72
 
73
-		return isset( $this->services[ $meta_key ] )
73
+		return isset($this->services[$meta_key])
74 74
 			// Use a specific property service.
75
-			? $this->services[ $meta_key ]->get( $post_id, $meta_key )
75
+			? $this->services[$meta_key]->get($post_id, $meta_key)
76 76
 			// Use the default property service.
77
-			: $this->default->get( $post_id, $meta_key );
77
+			: $this->default->get($post_id, $meta_key);
78 78
 	}
79 79
 
80 80
 }
Please login to merge, or discard this patch.
src/includes/properties/class-wordlift-simple-property-service.php 2 patches
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -11,27 +11,27 @@
 block discarded – undo
11 11
  */
12 12
 class Wordlift_Simple_Property_Service {
13 13
 
14
-	/**
15
-	 * The meta key for this property service.
16
-	 *
17
-	 * @since 3.8.0
18
-	 */
19
-	const META_KEY = '*';
14
+    /**
15
+     * The meta key for this property service.
16
+     *
17
+     * @since 3.8.0
18
+     */
19
+    const META_KEY = '*';
20 20
 
21
-	/**
22
-	 * Get the property value for the specified post id and meta with the specified key.
23
-	 *
24
-	 * @since 3.8.0
25
-	 *
26
-	 * @param int $post_id The post id.
27
-	 * @param string $meta_key The meta key.
28
-	 *
29
-	 * @return mixed|null The property value.
30
-	 */
31
-	public function get( $post_id, $meta_key ) {
21
+    /**
22
+     * Get the property value for the specified post id and meta with the specified key.
23
+     *
24
+     * @since 3.8.0
25
+     *
26
+     * @param int $post_id The post id.
27
+     * @param string $meta_key The meta key.
28
+     *
29
+     * @return mixed|null The property value.
30
+     */
31
+    public function get( $post_id, $meta_key ) {
32 32
 
33
-		// Get the value stored in WP.
34
-		return get_post_meta( $post_id, $meta_key );
35
-	}
33
+        // Get the value stored in WP.
34
+        return get_post_meta( $post_id, $meta_key );
35
+    }
36 36
 
37 37
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 // Require the Wordlift_Property_Not_Found class.
4
-require_once( "class-wordlift-property-not-found.php" );
5
-require_once( "class-wordlift-property-entity-reference.php" );
4
+require_once("class-wordlift-property-not-found.php");
5
+require_once("class-wordlift-property-entity-reference.php");
6 6
 
7 7
 /**
8 8
  * A property service that just returns the value stored in WP's meta.
@@ -28,10 +28,10 @@  discard block
 block discarded – undo
28 28
 	 *
29 29
 	 * @return mixed|null The property value.
30 30
 	 */
31
-	public function get( $post_id, $meta_key ) {
31
+	public function get($post_id, $meta_key) {
32 32
 
33 33
 		// Get the value stored in WP.
34
-		return get_post_meta( $post_id, $meta_key );
34
+		return get_post_meta($post_id, $meta_key);
35 35
 	}
36 36
 
37 37
 }
Please login to merge, or discard this patch.