@@ -8,8 +8,9 @@ |
||
8 | 8 | $plugin = basename(\PodloveSubscribeButton\PLUGIN_DIR) . '/' . \PodloveSubscribeButton\PLUGIN_FILE_NAME; |
9 | 9 | $blogids = $wpdb->get_col("SELECT blog_id FROM " . $wpdb->blogs); |
10 | 10 | |
11 | - if (!is_array($blogids)) |
|
12 | - return; |
|
11 | + if (!is_array($blogids)) { |
|
12 | + return; |
|
13 | + } |
|
13 | 14 | |
14 | 15 | foreach ($blogids as $blog_id) { |
15 | 16 | switch_to_blog($blog_id); |
@@ -38,8 +38,9 @@ discard block |
||
38 | 38 | require('helper.php'); |
39 | 39 | |
40 | 40 | add_action( 'admin_menu', array( 'PodloveSubscribeButton', 'admin_menu') ); |
41 | -if ( is_multisite() ) |
|
41 | +if ( is_multisite() ) { |
|
42 | 42 | add_action( 'network_admin_menu', array( 'PodloveSubscribeButton', 'admin_network_menu') ); |
43 | +} |
|
43 | 44 | |
44 | 45 | add_action( 'admin_init', array( 'PodloveSubscribeButton\Settings\Buttons', 'process_form' ) ); |
45 | 46 | register_activation_hook( __FILE__, array( 'PodloveSubscribeButton', 'build_models' ) ); |
@@ -95,8 +96,9 @@ discard block |
||
95 | 96 | public static function build_models() { |
96 | 97 | // Build Databases |
97 | 98 | \PodloveSubscribeButton\Model\Button::build(); |
98 | - if ( is_multisite() ) |
|
99 | - \PodloveSubscribeButton\Model\NetworkButton::build(); |
|
99 | + if ( is_multisite() ) { |
|
100 | + \PodloveSubscribeButton\Model\NetworkButton::build(); |
|
101 | + } |
|
100 | 102 | |
101 | 103 | // Set Button "default" values |
102 | 104 | $default_values = array( |
@@ -122,8 +124,9 @@ discard block |
||
122 | 124 | } |
123 | 125 | |
124 | 126 | // Fetch the (network)button by it's name |
125 | - if ( ! $button = \PodloveSubscribeButton\Model\Button::get_button_by_name($args['button']) ) |
|
126 | - return sprintf( __('Oops. There is no button with the ID "%s".', 'podlove-subscribe-button'), $args['button'] ); |
|
127 | + if ( ! $button = \PodloveSubscribeButton\Model\Button::get_button_by_name($args['button']) ) { |
|
128 | + return sprintf( __('Oops. There is no button with the ID "%s".', 'podlove-subscribe-button'), $args['button'] ); |
|
129 | + } |
|
127 | 130 | |
128 | 131 | // Get button styling and options |
129 | 132 | $autowidth = self::interpret_width_attribute( self::get_array_value_with_fallback($args, 'width') ); |
@@ -155,8 +158,9 @@ discard block |
||
155 | 158 | } |
156 | 159 | |
157 | 160 | public static function get_array_value_with_fallback($args, $key) { |
158 | - if ( isset($args[$key]) ) |
|
159 | - return $args[$key]; |
|
161 | + if ( isset($args[$key]) ) { |
|
162 | + return $args[$key]; |
|
163 | + } |
|
160 | 164 | |
161 | 165 | return FALSE; |
162 | 166 | } |
@@ -180,10 +184,12 @@ discard block |
||
180 | 184 | * @return string |
181 | 185 | */ |
182 | 186 | private static function interpret_width_attribute( $width_attribute = NULL ) { |
183 | - if ( $width_attribute == 'auto' ) |
|
184 | - return 'on'; |
|
185 | - if ( $width_attribute && $width_attribute !== 'auto' ) |
|
186 | - return 'off'; |
|
187 | + if ( $width_attribute == 'auto' ) { |
|
188 | + return 'on'; |
|
189 | + } |
|
190 | + if ( $width_attribute && $width_attribute !== 'auto' ) { |
|
191 | + return 'off'; |
|
192 | + } |
|
187 | 193 | |
188 | 194 | return get_option('podlove_subscribe_button_default_autowidth', 'on'); |
189 | 195 | } |
@@ -115,8 +115,9 @@ discard block |
||
115 | 115 | 'variant' => 'high' |
116 | 116 | ); |
117 | 117 | |
118 | - if ( isset($feed['itunesfeedid']) && $feed['itunesfeedid'] > 0 ) |
|
119 | - $new_feed['directory-url-itunes'] = "https://itunes.apple.com/podcast/id" . $feed['itunesfeedid']; |
|
118 | + if ( isset($feed['itunesfeedid']) && $feed['itunesfeedid'] > 0 ) { |
|
119 | + $new_feed['directory-url-itunes'] = "https://itunes.apple.com/podcast/id" . $feed['itunesfeedid']; |
|
120 | + } |
|
120 | 121 | |
121 | 122 | $feeds[] = $new_feed; |
122 | 123 | } |
@@ -177,11 +178,13 @@ discard block |
||
177 | 178 | * @return string |
178 | 179 | */ |
179 | 180 | private static function interpret_autowidth_attribute($autowidth) { |
180 | - if ( $autowidth == 'default' && get_option('podlove_subscribe_button_default_autowidth') !== 'on' ) |
|
181 | - return ''; |
|
181 | + if ( $autowidth == 'default' && get_option('podlove_subscribe_button_default_autowidth') !== 'on' ) { |
|
182 | + return ''; |
|
183 | + } |
|
182 | 184 | |
183 | - if ( $autowidth !== 'default' && $autowidth !== 'on' ) |
|
184 | - return ''; |
|
185 | + if ( $autowidth !== 'default' && $autowidth !== 'on' ) { |
|
186 | + return ''; |
|
187 | + } |
|
185 | 188 | |
186 | 189 | return ' auto'; |
187 | 190 | } |
@@ -45,11 +45,13 @@ discard block |
||
45 | 45 | } |
46 | 46 | |
47 | 47 | private static function unserialize_property($property) { |
48 | - if ( ! isset($property) ) |
|
49 | - return; |
|
48 | + if ( ! isset($property) ) { |
|
49 | + return; |
|
50 | + } |
|
50 | 51 | |
51 | - if ( $unserialized_string = is_serialized($property) ) |
|
52 | - return unserialize($property); |
|
52 | + if ( $unserialized_string = is_serialized($property) ) { |
|
53 | + return unserialize($property); |
|
54 | + } |
|
53 | 55 | |
54 | 56 | return $property; |
55 | 57 | } |
@@ -319,8 +321,9 @@ discard block |
||
319 | 321 | */ |
320 | 322 | public function update_attributes( $attributes ) { |
321 | 323 | |
322 | - if ( ! is_array( $attributes ) ) |
|
323 | - return false; |
|
324 | + if ( ! is_array( $attributes ) ) { |
|
325 | + return false; |
|
326 | + } |
|
324 | 327 | |
325 | 328 | $request = filter_input_array(INPUT_POST); // Do this for security reasons |
326 | 329 | |
@@ -429,12 +432,14 @@ discard block |
||
429 | 432 | |
430 | 433 | $defaults = $this->default_values(); |
431 | 434 | |
432 | - if ( ! is_array( $defaults ) || empty( $defaults ) ) |
|
433 | - return; |
|
435 | + if ( ! is_array( $defaults ) || empty( $defaults ) ) { |
|
436 | + return; |
|
437 | + } |
|
434 | 438 | |
435 | 439 | foreach ( $defaults as $property => $value ) { |
436 | - if ( $this->$property === NULL ) |
|
437 | - $this->$property = $value; |
|
440 | + if ( $this->$property === NULL ) { |
|
441 | + $this->$property = $value; |
|
442 | + } |
|
438 | 443 | } |
439 | 444 | |
440 | 445 | } |
@@ -495,8 +500,9 @@ discard block |
||
495 | 500 | global $wpdb; |
496 | 501 | |
497 | 502 | $property_sql = array(); |
498 | - foreach ( static::properties() as $property ) |
|
499 | - $property_sql[] = "`{$property['name']}` {$property['type']}"; |
|
503 | + foreach ( static::properties() as $property ) { |
|
504 | + $property_sql[] = "`{$property['name']}` {$property['type']}"; |
|
505 | + } |
|
500 | 506 | |
501 | 507 | $sql = 'CREATE TABLE IF NOT EXISTS ' |
502 | 508 | . static::table_name() |
@@ -45,8 +45,9 @@ discard block |
||
45 | 45 | * Process form: save/update a format |
46 | 46 | */ |
47 | 47 | public static function save() { |
48 | - if ( null == filter_input(INPUT_GET, 'button') ) |
|
49 | - return; |
|
48 | + if ( null == filter_input(INPUT_GET, 'button') ) { |
|
49 | + return; |
|
50 | + } |
|
50 | 51 | |
51 | 52 | $post = filter_input_array(INPUT_POST); |
52 | 53 | |
@@ -81,8 +82,9 @@ discard block |
||
81 | 82 | * Process form: delete a format |
82 | 83 | */ |
83 | 84 | public static function delete() { |
84 | - if ( null == filter_input(INPUT_GET, 'button') ) |
|
85 | - return; |
|
85 | + if ( null == filter_input(INPUT_GET, 'button') ) { |
|
86 | + return; |
|
87 | + } |
|
86 | 88 | |
87 | 89 | $button = ( filter_input(INPUT_GET, 'network') === '1' ? \PodloveSubscribeButton\Model\NetworkButton::find_by_id( filter_input(INPUT_GET, 'button') ) : \PodloveSubscribeButton\Model\Button::find_by_id( filter_input(INPUT_GET, 'button') ) ); |
88 | 90 | $button->delete(); |
@@ -104,8 +106,9 @@ discard block |
||
104 | 106 | } |
105 | 107 | |
106 | 108 | public static function process_form() { |
107 | - if ( null === filter_input(INPUT_GET, 'button') ) |
|
108 | - return; |
|
109 | + if ( null === filter_input(INPUT_GET, 'button') ) { |
|
110 | + return; |
|
111 | + } |
|
109 | 112 | |
110 | 113 | $action = ( null !== filter_input(INPUT_GET, 'action') ? filter_input(INPUT_GET, 'action') : NULL ); |
111 | 114 |
@@ -17,16 +17,18 @@ discard block |
||
17 | 17 | public static $widget_settings = array('infotext', 'title', 'size', 'style', 'format', 'autowidth', 'button', 'color'); |
18 | 18 | |
19 | 19 | public static function is_podlove_publisher_active() { |
20 | - if ( is_plugin_active("podlove-publisher/plugin.php") ) |
|
21 | - return true; |
|
20 | + if ( is_plugin_active("podlove-publisher/plugin.php") ) { |
|
21 | + return true; |
|
22 | + } |
|
22 | 23 | |
23 | 24 | return false; |
24 | 25 | } |
25 | 26 | |
26 | 27 | public function widget( $args, $instance ) { |
27 | 28 | // Fetch the (network)button by it's name |
28 | - if ( ! $button = \PodloveSubscribeButton\Model\Button::get_button_by_name($instance['button']) ) |
|
29 | - return sprintf( __('Oops. There is no button with the ID "%s".', 'podlove-subscribe-button'), $args['button'] ); |
|
29 | + if ( ! $button = \PodloveSubscribeButton\Model\Button::get_button_by_name($instance['button']) ) { |
|
30 | + return sprintf( __('Oops. There is no button with the ID "%s".', 'podlove-subscribe-button'), $args['button'] ); |
|
31 | + } |
|
30 | 32 | |
31 | 33 | echo $args['before_widget']; |
32 | 34 | echo $args['before_title'] . apply_filters( 'widget_title', $instance['title'] ). $args['after_title']; |
@@ -39,8 +41,9 @@ discard block |
||
39 | 41 | \PodloveSubscribeButton::get_array_value_with_fallback($instance, 'color') |
40 | 42 | ); |
41 | 43 | |
42 | - if ( strlen($instance['infotext']) ) |
|
43 | - echo wpautop($instance['infotext']); |
|
44 | + if ( strlen($instance['infotext']) ) { |
|
45 | + echo wpautop($instance['infotext']); |
|
46 | + } |
|
44 | 47 | |
45 | 48 | echo $args['after_widget']; |
46 | 49 | } |
@@ -51,8 +54,9 @@ discard block |
||
51 | 54 | } |
52 | 55 | |
53 | 56 | $buttons = \PodloveSubscribeButton\Model\Button::all(); |
54 | - if ( is_multisite() ) |
|
55 | - $network_buttons = \PodloveSubscribeButton\Model\NetworkButton::all(); |
|
57 | + if ( is_multisite() ) { |
|
58 | + $network_buttons = \PodloveSubscribeButton\Model\NetworkButton::all(); |
|
59 | + } |
|
56 | 60 | |
57 | 61 | $buttons_as_options = function ($buttons) { |
58 | 62 | foreach ($buttons as $subscribebutton) { |
@@ -85,8 +89,10 @@ discard block |
||
85 | 89 | <optgroup label="<?php _e('Network', 'podlove'); ?>"> |
86 | 90 | <?php $buttons_as_options($network_buttons); ?> |
87 | 91 | </optgroup> |
88 | - <?php else : |
|
92 | + <?php else { |
|
93 | + : |
|
89 | 94 | $buttons_as_options($buttons); |
95 | +} |
|
90 | 96 | endif; ?> |
91 | 97 | </select> |
92 | 98 | |
@@ -138,6 +144,6 @@ discard block |
||
138 | 144 | return $instance; |
139 | 145 | } |
140 | 146 | } |
141 | -add_action( 'widgets_init', function(){ |
|
147 | +add_action( 'widgets_init', function() { |
|
142 | 148 | register_widget( '\PodloveSubscribeButton\Podlove_Subscribe_Button_Widget' ); |
143 | 149 | }); |
144 | 150 | \ No newline at end of file |
@@ -55,8 +55,9 @@ discard block |
||
55 | 55 | } |
56 | 56 | |
57 | 57 | function run_database_migrations() { |
58 | - if (get_option('podlove_subscribe_button_plugin_database_version') >= DATABASE_VERSION) |
|
59 | - return; |
|
58 | + if (get_option('podlove_subscribe_button_plugin_database_version') >= DATABASE_VERSION) { |
|
59 | + return; |
|
60 | + } |
|
60 | 61 | |
61 | 62 | if (is_multisite()) { |
62 | 63 | set_time_limit(0); // may take a while, depending on network size |
@@ -74,7 +75,7 @@ discard block |
||
74 | 75 | function migrate_for_current_blog() { |
75 | 76 | $database_version = get_option('podlove_subscribe_button_plugin_database_version'); |
76 | 77 | |
77 | - for ($i = $database_version+1; $i <= DATABASE_VERSION; $i++) { |
|
78 | + for ($i = $database_version+1; $i <= DATABASE_VERSION; $i++) { |
|
78 | 79 | \PodloveSubscribeButton\run_migrations_for_version($i); |
79 | 80 | update_option('podlove_subscribe_button_plugin_database_version', $i); |
80 | 81 | } |
@@ -1,13 +1,13 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | namespace PodloveSubscribeButton; |
3 | 3 | |
4 | -if( ! class_exists( 'WP_List_Table' ) ){ |
|
4 | +if( ! class_exists( 'WP_List_Table' ) ) { |
|
5 | 5 | require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' ); |
6 | 6 | } |
7 | 7 | |
8 | 8 | class Button_List_Table extends \WP_List_Table { |
9 | 9 | |
10 | - function __construct(){ |
|
10 | + function __construct() { |
|
11 | 11 | global $status, $page; |
12 | 12 | |
13 | 13 | // Set parent defaults |
@@ -32,8 +32,9 @@ discard block |
||
32 | 32 | } |
33 | 33 | |
34 | 34 | function column_button_preview( $button ) { |
35 | - if ( ! $button->feeds ) |
|
36 | - return; |
|
35 | + if ( ! $button->feeds ) { |
|
36 | + return; |
|
37 | + } |
|
37 | 38 | |
38 | 39 | $is_network = is_network_admin(); |
39 | 40 | |
@@ -51,7 +52,7 @@ discard block |
||
51 | 52 | return $button->id; |
52 | 53 | } |
53 | 54 | |
54 | - function get_columns(){ |
|
55 | + function get_columns() { |
|
55 | 56 | return array( |
56 | 57 | 'name' => __( 'Title & Shortcode', 'podlove-subscribe-button' ), |
57 | 58 | 'button_preview' => __( 'Preview', 'podlove-subscribe-button' ) |