GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — feature/gallery-template-clien... ( 680944...fadc9b )
by Brad
04:57 queued 28s
created

__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
if ( ! class_exists( 'FooGallery_Admin_Gallery_MetaBox_Fields' ) ) {
4
5
	class FooGallery_Admin_Gallery_MetaBox_Fields {
6
7
		function __construct() {
0 ignored issues
show
Best Practice introduced by
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
8
			//render the different types of fields for our gallery settings
9
			add_action( 'foogallery_render_gallery_template_field', array( $this, 'render_gallery_template_field' ), 10, 3 );
10
		}
11
12
		/**
13
		 * Renders a gallery template field into the gallery settings metabox for a FooGallery
14
		 *
15
		 * @param array $field
16
		 * @param       $gallery FooGallery
17
		 * @param       $template
18
		 */
19
		function render_gallery_template_field( $field = array(), $gallery, $template ) {
20
			$template_slug = $template['slug'];
21
22
			//only declare up front so no debug warnings are shown
23
			$type = $id = $desc = $default = $placeholder = $choices = $class = $spacer = $opactiy = null;
24
25
			extract( $field );
26
27
			$id = $template_slug . '_' . $id;
28
29
			$field['value'] = apply_filters( 'foogallery_render_gallery_template_field_value', $gallery->get_meta( $id, $default ), $field, $gallery, $template );
30
31
			$field_class = empty($class) ? '' : ' class="' . $class . '"';
32
33
			$field['choices'] = apply_filters( 'foogallery_render_gallery_template_field_choices', $choices, $field, $gallery );
34
35
			//allow for UI customization
36
			do_action( 'foogallery_render_gallery_template_field_before', $field, $gallery );
37
38
			echo '<div class="foogallery_metabox_field-' . $type . '">';
39
40
			switch ( $type ) {
41
42
				case 'html':
43
					echo $desc;
44
					$desc = '';
0 ignored issues
show
Unused Code introduced by
$desc is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
45
					break;
46
47
				case 'checkbox':
48
					if ( isset($gallery->settings[$id]) && $gallery->settings[$id] == 'on' ) {
49
						$field['value'] = 'on';
50
					} else if ( ! isset($gallery->settings) && $default == 'on' ) {
51
						$field['value'] = 'on';
52
					} else {
53
						$field['value'] = '';
54
					}
55
56
					$checked = 'on' === $field['value'] ? ' checked="checked"' : '';
57
					echo '<input' . $field_class . ' type="checkbox" id="FooGallerySettings_' . $id . '" name="' . FOOGALLERY_META_SETTINGS . '[' . $id . ']" value="on"' . $checked . ' />';
58
					break;
59
60
				case 'select':
61
					echo '<select' . $field_class . ' id="FooGallerySettings_' . $id . '" name="' . FOOGALLERY_META_SETTINGS . '[' . $id . ']">';
62
					foreach ( $choices as $value => $label ) {
0 ignored issues
show
Bug introduced by
The expression $choices of type null is not traversable.
Loading history...
63
						$selected = '';
64
						if ( $field['value'] == $value ) {
65
							$selected = ' selected="selected"';
66
						}
67
						echo '<option ' . $selected . ' value="' . $value . '">' . $label . '</option>';
68
					}
69
70
					echo '</select>';
71
					break;
72
73
				case 'radio':
74
					$i = 0;
75
					$spacer = isset($spacer) ? $spacer : '<br />';
76
					foreach ( $choices as $value => $label ) {
0 ignored issues
show
Bug introduced by
The expression $choices of type null is not traversable.
Loading history...
77
						$selected = '';
78
						if ( $field['value'] == $value ) {
79
							$selected = ' checked="checked"';
80
						}
81
						echo '<input' . $field_class . $selected . ' type="radio" name="' . FOOGALLERY_META_SETTINGS . '[' . $id . ']"  id="FooGallerySettings_' . $id . $i . '" value="' . $value . '"> <label for="FooGallerySettings_' . $id . $i . '">' . $label . '</label>';
82
						if ( $i < count( $choices ) - 1 ) {
83
							echo $spacer;
84
						}
85
						$i++;
86
					}
87
					break;
88
89
				case 'textarea':
90
					echo '<textarea' . $field_class . ' id="FooGallerySettings_' . $id . '" name="' . FOOGALLERY_META_SETTINGS . '[' . $id . ']" placeholder="' . $placeholder . '">' . esc_attr( $field['value'] ) . '</textarea>';
91
92
					break;
93
94
				case 'text':
95
					echo '<input' . $field_class . ' type="text" id="FooGallerySettings_' . $id . '" name="' . FOOGALLERY_META_SETTINGS . '[' . $id . ']" value="' . esc_attr( $field['value'] ) . '" />';
96
97
					break;
98
99
				case 'colorpicker':
0 ignored issues
show
Coding Style introduced by
The case body in a switch statement must start on the line following the statement.

According to the PSR-2, the body of a case statement must start on the line immediately following the case statement.

switch ($expr) {
case "A":
    doSomething(); //right
    break;
case "B":

    doSomethingElse(); //wrong
    break;

}

To learn more about the PSR-2 coding standard, please refer to the PHP-Fig.

Loading history...
100
101
					$opacity_attribute = empty($opacity) ? '' : ' data-show-alpha="true"';
102
103
					echo '<input ' . $opacity_attribute . ' class="colorpicker" type="text" id="FooGallerySettings_' . $id . '" name="' . FOOGALLERY_META_SETTINGS . '[' . $id . ']" value="' . esc_attr( $field['value'] ) . '" />';
104
105
					break;
106
107
				case 'number':
108
					$min = isset($min) ? $min : 0;
109
					$step = isset($step) ? $step : 1;
110
					echo '<input class="regular-text ' . $class . '" type="number" step="' . $step . '" min="' . $min .'" id="FooGallerySettings_' . $id . '" name="' . FOOGALLERY_META_SETTINGS . '[' . $id . ']" placeholder="' . $placeholder . '" value="' . esc_attr( $field['value'] ) . '" />';
111
112
					break;
113
114
				case 'checkboxlist':
115
					$i = 0;
116
					foreach ( $choices as $value => $label ) {
117
118
						$checked = '';
119
						if ( isset($field['value'][$value]) && $field['value'][$value] == $value ) {
120
							$checked = 'checked="checked"';
121
						}
122
123
						echo '<input' . $field_class . ' ' . $checked . ' type="checkbox" name="' . FOOGALLERY_META_SETTINGS . '[' . $id . '][' . $value . ']" id="FooGallerySettings_' . $id . $i . '" value="' . $value . '" data-value="' . $value . '"> <label for="FooGallerySettings_' . $id . $i . '">' . $label . '</label>';
124
						if ( $i < count( $choices ) - 1 ) {
125
							echo '<br />';
126
						}
127
						$i++;
128
					}
129
130
					break;
131
				case 'icon':
132
					$i = 0;
133
					$input_name = FOOGALLERY_META_SETTINGS . '[' . $id . ']';
134
					$icon_html = '';
135
					foreach ( $choices as $value => $icon ) {
136
						$selected = ( $field['value'] == $value ) ? ' checked="checked"' : '';
137
						$icon_html .= '<input style="display:none" name="' . $input_name. '" id="FooGallerySettings_' . $id . $i . '" ' . $selected . ' type="radio" value="' . $value . '" tabindex="' . $i . '"/>';
138
						$title = $icon['label'];
139
						$img = $icon['img'];
140
						$icon_html .= '<label for="FooGallerySettings_' . $id . $i . '" data-balloon-length="small" data-balloon-pos="down" data-balloon="' . $title . '"><img src="' . $img . '" /></label>';
141
						$i++;
142
					}
143
					echo $icon_html;
144
					break;
145
146
				case 'htmlicon':
147
					$i = 0;
148
					$input_name = FOOGALLERY_META_SETTINGS . '[' . $id . ']';
149
					$icon_html = '';
150
					foreach ( $choices as $value => $icon ) {
0 ignored issues
show
Bug introduced by
The expression $choices of type null is not traversable.
Loading history...
151
						$selected = ( $field['value'] == $value ) ? ' checked="checked"' : '';
152
						$icon_html .= '<input style="display:none" name="' . $input_name. '" id="FooGallerySettings_' . $id . $i . '" ' . $selected . ' type="radio" value="' . $value . '" tabindex="' . $i . '"/>';
153
						$title = $icon['label'];
154
						$html = $icon['html'];
155
						$icon_html .= '<label for="FooGallerySettings_' . $id . $i . '" data-balloon-length="small" data-balloon-pos="down" data-balloon="' . $title . '">' . $html . '</label>';
156
						$i++;
157
					}
158
					echo $icon_html;
159
					break;
160
161
				case 'thumb_size':
162
					$width = is_array( $field['value'] ) ? $field['value']['width'] : 150;
163
					$height = is_array( $field['value'] ) ? $field['value']['height'] : 150;
164
					$crop = is_array( $field['value'] ) && array_key_exists( 'crop', $field['value'] ) ? $field['value']['crop'] : 0;
165
					$crop_checked = ( $crop == 1 ) ? ' checked="checked"' : '';
166
					echo '<label for="FooGallerySettings_' . $id . '_width">' . __( 'Width', 'foogallery' ) . '</label>';
167
					echo '<input class="small-text" type="number" step="1" min="0" id="FooGallerySettings_' . $id . '_width" name="' . FOOGALLERY_META_SETTINGS . '[' . $id . '][width]" value="' . esc_attr( $width ) . '" />';
168
					echo '<label for="FooGallerySettings_' . $id . '_width">' . __( 'Height', 'foogallery' ) . '</label>';
169
					echo '<input class="small-text" type="number" step="1" min="0" id="FooGallerySettings_' . $id . '_height" name="' . FOOGALLERY_META_SETTINGS . '[' . $id . '][height]" value="' . esc_attr( $height ) . '" />';
170
					echo '<div class="foogallery-thumbsize-crop"><input name="' . FOOGALLERY_META_SETTINGS . '[' . $id . '][crop]" type="hidden" id="FooGallerySettings_' . $id . '_nocrop" value="0" />';
171
					echo '<input name="' . FOOGALLERY_META_SETTINGS . '[' . $id . '][crop]" type="checkbox" id="FooGallerySettings_' . $id . '_crop" value="1"' . $crop_checked . '>';
172
					echo '<label for="FooGallerySettings_' . $id . '_crop">' . __( 'Crop thumbnail to exact dimensions', 'foogallery' ) . '</label></div>';
173
					break;
174
175
				default:
176
					do_action( 'foogallery_render_gallery_template_field_custom', $field, $gallery, $template );
177
					break;
178
			}
179
180
			if (!empty($suffix)) {
181
				echo $suffix;
182
			}
183
184
			echo '</div>';
185
186
			//allow for more customization
187
			do_action( 'foogallery_render_gallery_template_field_after', $field, $gallery );
188
		}
189
	}
190
}
191