Completed
Pull Request — develop (#1553)
by Naveen
01:01
created
src/includes/class-wordlift-i18n.php 1 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/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/admin/class-wordlift-primashop-adapter.php 1 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 1 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/class-wordlift-property-factory.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 *
30 30
 	 * @param \Wordlift_Property_Service $default_property_service
31 31
 	 */
32
-	public function __construct( $default_property_service ) {
32
+	public function __construct($default_property_service) {
33 33
 
34 34
 		$this->default_property_service = $default_property_service;
35 35
 
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
 	 * @param string $meta_key WordPress' meta key.
44 44
 	 * @param \Wordlift_Property_Service $property_service A {@link Wordlift_Property_Service} instance.
45 45
 	 */
46
-	public function register( $meta_key, $property_service ) {
46
+	public function register($meta_key, $property_service) {
47 47
 
48
-		$this->property_services[ $meta_key ] = $property_service;
48
+		$this->property_services[$meta_key] = $property_service;
49 49
 
50 50
 	}
51 51
 
@@ -58,9 +58,9 @@  discard block
 block discarded – undo
58 58
 	 *
59 59
 	 * @return \Wordlift_Property_Service The {@link Wordlift_Property_Service} which handles the specified meta key.
60 60
 	 */
61
-	public function get( $meta_key ) {
61
+	public function get($meta_key) {
62 62
 
63
-		return $this->property_services[ $meta_key ] ?: $this->default_property_service;
63
+		return $this->property_services[$meta_key] ?: $this->default_property_service;
64 64
 	}
65 65
 
66 66
 }
67 67
\ No newline at end of file
Please login to merge, or discard this patch.
src/public/class-wordlift-seo-service.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
27 27
 	function __construct() {
28 28
 
29 29
 		// If we are not on the admin, run the get_term filter for entity type terms.
30
-		add_filter( 'get_wl_entity_type', array(
30
+		add_filter('get_wl_entity_type', array(
31 31
 			$this,
32 32
 			'get_wl_entity_type',
33
-		), 10, 2 );
33
+		), 10, 2);
34 34
 
35 35
 	}
36 36
 
@@ -45,35 +45,35 @@  discard block
 block discarded – undo
45 45
 	 *
46 46
 	 * @return WP_Term The {@link WP_Term} with fields changed.
47 47
 	 */
48
-	function get_wl_entity_type( $term, $taxonomy ) {
48
+	function get_wl_entity_type($term, $taxonomy) {
49 49
 
50 50
 		// Do nothing when in admin.
51
-		if ( is_admin() ) {
51
+		if (is_admin()) {
52 52
 			return $term;
53 53
 		}
54 54
 
55 55
 		// Get the terms' settings.
56
-		$entity_settings = get_option( 'wl_entity_type_settings', array() );
56
+		$entity_settings = get_option('wl_entity_type_settings', array());
57 57
 
58 58
 		// If we have no settings for the specified term, then return the original
59 59
 		// term.
60
-		if ( ! isset( $entity_settings[ $term->term_id ] ) ) {
60
+		if ( ! isset($entity_settings[$term->term_id])) {
61 61
 
62 62
 			return $term;
63 63
 		}
64 64
 
65 65
 		// Get the settings for the specified term.
66
-		$settings = $entity_settings[ $term->term_id ];
66
+		$settings = $entity_settings[$term->term_id];
67 67
 
68 68
 		// Update the name.
69
-		if ( ! empty( $settings['title'] ) ) {
69
+		if ( ! empty($settings['title'])) {
70 70
 
71 71
 			$term->name = $settings['title'];
72 72
 
73 73
 		}
74 74
 
75 75
 		// Update the description.
76
-		if ( ! empty( $settings['description'] ) ) {
76
+		if ( ! empty($settings['description'])) {
77 77
 
78 78
 			$term->description = $settings['description'];
79 79
 
Please login to merge, or discard this patch.
src/public/class-wordlift-widget.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@  discard block
 block discarded – undo
19 19
 	/**
20 20
 	 * @inheritdoc
21 21
 	 */
22
-	public function __construct( $id_base, $name, array $widget_options = array(), array $control_options = array() ) {
23
-		parent::__construct( $id_base, $name, $widget_options, $control_options );
22
+	public function __construct($id_base, $name, array $widget_options = array(), array $control_options = array()) {
23
+		parent::__construct($id_base, $name, $widget_options, $control_options);
24 24
 
25 25
 		// Initialize the Related Entities Cloud Widget.
26
-		add_action( 'widgets_init', array( $this, 'widget_init' ) );
26
+		add_action('widgets_init', array($this, 'widget_init'));
27 27
 
28 28
 	}
29 29
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	 */
35 35
 	public function widget_init() {
36 36
 
37
-		register_widget( get_class( $this ) );
37
+		register_widget(get_class($this));
38 38
 
39 39
 	}
40 40
 
Please login to merge, or discard this patch.
src/includes/class-wordlift-category-taxonomy-service.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	 *
35 35
 	 * @param \Wordlift_Entity_Post_Type_Service $entity_post_type_service The {@link Wordlift_Entity_Post_Type_Service} instance.
36 36
 	 */
37
-	function __construct( $entity_post_type_service ) {
37
+	function __construct($entity_post_type_service) {
38 38
 
39 39
 		$this->entity_post_type_service = $entity_post_type_service;
40 40
 
@@ -51,10 +51,10 @@  discard block
 block discarded – undo
51 51
 	 *
52 52
 	 * @param WP_Query $query WP's {@link WP_Query} instance.
53 53
 	 */
54
-	public function pre_get_posts( $query ) {
54
+	public function pre_get_posts($query) {
55 55
 
56 56
 		// Only for the main query, avoid problems with widgets and what not.
57
-		if ( ! $query->is_main_query() ) {
57
+		if ( ! $query->is_main_query()) {
58 58
 			return;
59 59
 		}
60 60
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 		//
68 68
 		// is_admin is needed, otherwise category based post filters will show
69 69
 		// both types and at the current release (4.7) it causes PHP errors.
70
-		if ( is_admin() || ! is_category() || ! empty( $query->query_vars['suppress_filters'] ) ) {
70
+		if (is_admin() || ! is_category() || ! empty($query->query_vars['suppress_filters'])) {
71 71
 			return;
72 72
 		}
73 73
 
@@ -75,16 +75,16 @@  discard block
 block discarded – undo
75 75
 		// are already associated with other post types.
76 76
 		//
77 77
 		// If `post_type` isn't set, WP assumes `post` by default.
78
-		$post_types = (array) ( $query->get( 'post_type' ) ?: 'post' );
78
+		$post_types = (array) ($query->get('post_type') ?: 'post');
79 79
 
80 80
 		// Add the entities post type only if the post post type is used in the query
81 81
 		// since we only want `entities` to appear alongside posts.
82
-		if ( in_array( 'post', $post_types ) ) {
82
+		if (in_array('post', $post_types)) {
83 83
 			$post_types[] = $this->entity_post_type_service->get_post_type();
84 84
 		}
85 85
 
86 86
 		// Update the query post types.
87
-		$query->set( 'post_type', $post_types );
87
+		$query->set('post_type', $post_types);
88 88
 
89 89
 	}
90 90
 
Please login to merge, or discard this patch.