Completed
Push — master ( 3a1116...9bdd37 )
by Askupa
01:53
created
AbstractWidget.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -18,12 +18,12 @@  discard block
 block discarded – undo
18 18
         );
19 19
     }
20 20
     
21
-    public function form( $instance ) 
21
+    public function form($instance) 
22 22
     {
23
-        $values = array_merge($this->get_default_field_values(),$instance);
23
+        $values = array_merge($this->get_default_field_values(), $instance);
24 24
         $config = $this->get_config();
25 25
 
26
-        foreach( $config['fields'] as $field_args )
26
+        foreach ($config['fields'] as $field_args)
27 27
         {
28 28
             $field_args['value'] = $values[$field_args['name']];
29 29
             $field_args['id'] = $this->get_field_id($field_args['name']);
@@ -34,12 +34,12 @@  discard block
 block discarded – undo
34 34
         }
35 35
     }
36 36
 
37
-    public function update( $new_instance, $old_instance ) 
37
+    public function update($new_instance, $old_instance) 
38 38
     {
39 39
         $instance = array_merge($this->get_default_field_values(), $new_instance);
40 40
         $config   = $this->get_config();
41 41
         
42
-        foreach( $config['fields'] as $field )
42
+        foreach ($config['fields'] as $field)
43 43
         {
44 44
             $name     = $field['name'];
45 45
             $value    = $new_instance[$name];
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     {
53 53
         $defaults = array();
54 54
         $config = $this->get_config();
55
-        foreach( $config['fields'] as $field )
55
+        foreach ($config['fields'] as $field)
56 56
         {
57 57
             $defaults[$field['name']] = $field['default'];
58 58
         }
@@ -72,14 +72,14 @@  discard block
 block discarded – undo
72 72
     
73 73
     private function get_config()
74 74
     {
75
-        if( !isset($this->config) )
75
+        if (!isset($this->config))
76 76
         {
77 77
             $this->config = array_merge(
78 78
                 $this->default_config(),
79 79
                 $this->config()
80 80
             );
81 81
 
82
-            if( null === $this->config['id'] )
82
+            if (null === $this->config['id'])
83 83
             {
84 84
                 throw new \RuntimeException('No \'id\' was sepcified in the widget configuration');
85 85
             }
Please login to merge, or discard this patch.
functions.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,15 +13,15 @@  discard block
 block discarded – undo
13 13
  */
14 14
 
15 15
 // Prevent direct file access
16
-defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
16
+defined('ABSPATH') or die('No script kiddies please!');
17 17
 
18 18
 /**
19 19
  * Prevent loading the library more than once
20 20
  */
21
-if( defined( 'AMARKAL_WIDGET' ) ) return false;
22
-define( 'AMARKAL_WIDGET', true );
21
+if (defined('AMARKAL_WIDGET')) return false;
22
+define('AMARKAL_WIDGET', true);
23 23
 
24
-if(!function_exists('amarkal_widget_style'))
24
+if (!function_exists('amarkal_widget_style'))
25 25
 {
26 26
     /**
27 27
      * Print widget styles
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     function amarkal_widget_style() 
30 30
     {
31 31
         $cs = get_current_screen();
32
-        if( 'widgets' === $cs->base )
32
+        if ('widgets' === $cs->base)
33 33
         {
34 34
             echo '<style>';
35 35
             include 'widget.css';
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,9 @@
 block discarded – undo
18 18
 /**
19 19
  * Prevent loading the library more than once
20 20
  */
21
-if( defined( 'AMARKAL_WIDGET' ) ) return false;
21
+if( defined( 'AMARKAL_WIDGET' ) ) {
22
+    return false;
23
+}
22 24
 define( 'AMARKAL_WIDGET', true );
23 25
 
24 26
 if(!function_exists('amarkal_widget_style'))
Please login to merge, or discard this patch.
composer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  */
7 7
 
8 8
 // Prevent direct file access
9
-defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
9
+defined('ABSPATH') or die('No script kiddies please!');
10 10
 
11 11
 // Load module functions
12 12
 require_once 'functions.php';
Please login to merge, or discard this patch.
bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
  */
7 7
 
8 8
 // Prevent direct file access
9
-defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
9
+defined('ABSPATH') or die('No script kiddies please!');
10 10
 
11 11
 /**
12 12
  * Load module functions. If this amarkal module has not been loaded, 
13 13
  * functions.php will not return false.
14 14
  */
15
-if(false !== (require_once 'functions.php'))
15
+if (false !== (require_once 'functions.php'))
16 16
 {
17 17
     require_once 'AbstractWidget.php';
18 18
     require_once 'FormField.php';
Please login to merge, or discard this patch.