@@ -8,21 +8,21 @@ |
||
8 | 8 | |
9 | 9 | class RegisterWidgets |
10 | 10 | { |
11 | - /** |
|
12 | - * @return void |
|
13 | - */ |
|
14 | - public function handle(Command $command) |
|
15 | - { |
|
16 | - global $wp_widget_factory; |
|
17 | - foreach ($command->widgets as $key => $values) { |
|
18 | - $widgetClass = glsr(Helper::class)->buildClassName($key.'-widget', 'Widgets'); |
|
19 | - if (!class_exists($widgetClass)) { |
|
20 | - glsr_log()->error(sprintf('Class missing (%s)', $widgetClass)); |
|
21 | - continue; |
|
22 | - } |
|
23 | - // Here we bypass register_widget() in order to pass our custom values to the widget |
|
24 | - $widget = new $widgetClass(Application::ID.'_'.$key, $values['title'], $values); |
|
25 | - $wp_widget_factory->widgets[$widgetClass] = $widget; |
|
26 | - } |
|
27 | - } |
|
11 | + /** |
|
12 | + * @return void |
|
13 | + */ |
|
14 | + public function handle(Command $command) |
|
15 | + { |
|
16 | + global $wp_widget_factory; |
|
17 | + foreach ($command->widgets as $key => $values) { |
|
18 | + $widgetClass = glsr(Helper::class)->buildClassName($key.'-widget', 'Widgets'); |
|
19 | + if (!class_exists($widgetClass)) { |
|
20 | + glsr_log()->error(sprintf('Class missing (%s)', $widgetClass)); |
|
21 | + continue; |
|
22 | + } |
|
23 | + // Here we bypass register_widget() in order to pass our custom values to the widget |
|
24 | + $widget = new $widgetClass(Application::ID.'_'.$key, $values['title'], $values); |
|
25 | + $wp_widget_factory->widgets[$widgetClass] = $widget; |
|
26 | + } |
|
27 | + } |
|
28 | 28 | } |
@@ -7,22 +7,22 @@ |
||
7 | 7 | |
8 | 8 | class RegisterTinymcePopups |
9 | 9 | { |
10 | - /** |
|
11 | - * @return void |
|
12 | - */ |
|
13 | - public function handle(Command $command) |
|
14 | - { |
|
15 | - foreach ($command->popups as $slug => $label) { |
|
16 | - $buttonClass = glsr(Helper::class)->buildClassName($slug.'-popup', 'Shortcodes'); |
|
17 | - if (!class_exists($buttonClass)) { |
|
18 | - glsr_log()->error(sprintf('Class missing (%s)', $buttonClass)); |
|
19 | - continue; |
|
20 | - } |
|
21 | - $shortcode = glsr($buttonClass)->register($slug, [ |
|
22 | - 'label' => $label, |
|
23 | - 'title' => $label, |
|
24 | - ]); |
|
25 | - glsr()->mceShortcodes[$slug] = $shortcode->properties; |
|
26 | - } |
|
27 | - } |
|
10 | + /** |
|
11 | + * @return void |
|
12 | + */ |
|
13 | + public function handle(Command $command) |
|
14 | + { |
|
15 | + foreach ($command->popups as $slug => $label) { |
|
16 | + $buttonClass = glsr(Helper::class)->buildClassName($slug.'-popup', 'Shortcodes'); |
|
17 | + if (!class_exists($buttonClass)) { |
|
18 | + glsr_log()->error(sprintf('Class missing (%s)', $buttonClass)); |
|
19 | + continue; |
|
20 | + } |
|
21 | + $shortcode = glsr($buttonClass)->register($slug, [ |
|
22 | + 'label' => $label, |
|
23 | + 'title' => $label, |
|
24 | + ]); |
|
25 | + glsr()->mceShortcodes[$slug] = $shortcode->properties; |
|
26 | + } |
|
27 | + } |
|
28 | 28 | } |
@@ -7,12 +7,12 @@ |
||
7 | 7 | |
8 | 8 | class RegisterTaxonomy |
9 | 9 | { |
10 | - /** |
|
11 | - * @return void |
|
12 | - */ |
|
13 | - public function handle(Command $command) |
|
14 | - { |
|
15 | - register_taxonomy(Application::TAXONOMY, Application::POST_TYPE, $command->args); |
|
16 | - register_taxonomy_for_object_type(Application::TAXONOMY, Application::POST_TYPE); |
|
17 | - } |
|
10 | + /** |
|
11 | + * @return void |
|
12 | + */ |
|
13 | + public function handle(Command $command) |
|
14 | + { |
|
15 | + register_taxonomy(Application::TAXONOMY, Application::POST_TYPE, $command->args); |
|
16 | + register_taxonomy_for_object_type(Application::TAXONOMY, Application::POST_TYPE); |
|
17 | + } |
|
18 | 18 | } |
@@ -6,16 +6,16 @@ |
||
6 | 6 | |
7 | 7 | class RegisterPostType |
8 | 8 | { |
9 | - /** |
|
10 | - * @return void |
|
11 | - */ |
|
12 | - public function handle(Command $command) |
|
13 | - { |
|
14 | - if (!in_array($command->postType, get_post_types(['_builtin' => true]))) { |
|
15 | - register_post_type($command->postType, $command->args); |
|
16 | - glsr()->postTypeColumns = wp_parse_args(glsr()->postTypeColumns, [ |
|
17 | - $command->postType => $command->columns, |
|
18 | - ]); |
|
19 | - } |
|
20 | - } |
|
9 | + /** |
|
10 | + * @return void |
|
11 | + */ |
|
12 | + public function handle(Command $command) |
|
13 | + { |
|
14 | + if (!in_array($command->postType, get_post_types(['_builtin' => true]))) { |
|
15 | + register_post_type($command->postType, $command->args); |
|
16 | + glsr()->postTypeColumns = wp_parse_args(glsr()->postTypeColumns, [ |
|
17 | + $command->postType => $command->columns, |
|
18 | + ]); |
|
19 | + } |
|
20 | + } |
|
21 | 21 | } |
@@ -7,18 +7,18 @@ |
||
7 | 7 | |
8 | 8 | class RegisterShortcodes |
9 | 9 | { |
10 | - /** |
|
11 | - * @return void |
|
12 | - */ |
|
13 | - public function handle(Command $command) |
|
14 | - { |
|
15 | - foreach ($command->shortcodes as $shortcode) { |
|
16 | - $shortcodeClass = glsr(Helper::class)->buildClassName($shortcode.'-shortcode', 'Shortcodes'); |
|
17 | - if (!class_exists($shortcodeClass)) { |
|
18 | - glsr_log()->error(sprintf('Class missing (%s)', $shortcodeClass)); |
|
19 | - continue; |
|
20 | - } |
|
21 | - add_shortcode($shortcode, [glsr($shortcodeClass), 'buildShortcode']); |
|
22 | - } |
|
23 | - } |
|
10 | + /** |
|
11 | + * @return void |
|
12 | + */ |
|
13 | + public function handle(Command $command) |
|
14 | + { |
|
15 | + foreach ($command->shortcodes as $shortcode) { |
|
16 | + $shortcodeClass = glsr(Helper::class)->buildClassName($shortcode.'-shortcode', 'Shortcodes'); |
|
17 | + if (!class_exists($shortcodeClass)) { |
|
18 | + glsr_log()->error(sprintf('Class missing (%s)', $shortcodeClass)); |
|
19 | + continue; |
|
20 | + } |
|
21 | + add_shortcode($shortcode, [glsr($shortcodeClass), 'buildShortcode']); |
|
22 | + } |
|
23 | + } |
|
24 | 24 | } |
@@ -4,50 +4,50 @@ |
||
4 | 4 | |
5 | 5 | class SiteReviewsFormPopup extends TinymcePopupGenerator |
6 | 6 | { |
7 | - /** |
|
8 | - * @return array |
|
9 | - */ |
|
10 | - public function fields() |
|
11 | - { |
|
12 | - return [[ |
|
13 | - 'type' => 'container', |
|
14 | - 'html' => '<p class="strong">'.esc_html__('All settings are optional.', 'site-reviews').'</p>', |
|
15 | - ], [ |
|
16 | - 'label' => esc_html__('Title', 'site-reviews'), |
|
17 | - 'name' => 'title', |
|
18 | - 'tooltip' => __('Enter a custom shortcode heading.', 'site-reviews'), |
|
19 | - 'type' => 'textbox', |
|
20 | - ], [ |
|
21 | - 'label' => esc_html__('Description', 'site-reviews'), |
|
22 | - 'minHeight' => 60, |
|
23 | - 'minWidth' => 240, |
|
24 | - 'multiline' => true, |
|
25 | - 'name' => 'description', |
|
26 | - 'tooltip' => __('Enter a custom shortcode description.', 'site-reviews'), |
|
27 | - 'type' => 'textbox', |
|
28 | - ], |
|
29 | - $this->getCategories(__('Automatically assign a category to reviews submitted with this shortcode.', 'site-reviews')), |
|
30 | - [ |
|
31 | - 'label' => esc_html__('Assign To', 'site-reviews'), |
|
32 | - 'name' => 'assign_to', |
|
33 | - 'tooltip' => __('Assign submitted reviews to a custom page/post ID. You can also enter "post_id" to assign reviews to the ID of the current page.', 'site-reviews'), |
|
34 | - 'type' => 'textbox', |
|
35 | - ], [ |
|
36 | - 'label' => esc_html__('Classes', 'site-reviews'), |
|
37 | - 'name' => 'class', |
|
38 | - 'tooltip' => __('Add custom CSS classes to the shortcode.', 'site-reviews'), |
|
39 | - 'type' => 'textbox', |
|
40 | - ], [ |
|
41 | - 'columns' => 2, |
|
42 | - 'items' => $this->getHideOptions(), |
|
43 | - 'label' => esc_html__('Hide', 'site-reviews'), |
|
44 | - 'layout' => 'grid', |
|
45 | - 'spacing' => 5, |
|
46 | - 'type' => 'container', |
|
47 | - ], [ |
|
48 | - 'hidden' => true, |
|
49 | - 'name' => 'id', |
|
50 | - 'type' => 'textbox', |
|
51 | - ], ]; |
|
52 | - } |
|
7 | + /** |
|
8 | + * @return array |
|
9 | + */ |
|
10 | + public function fields() |
|
11 | + { |
|
12 | + return [[ |
|
13 | + 'type' => 'container', |
|
14 | + 'html' => '<p class="strong">'.esc_html__('All settings are optional.', 'site-reviews').'</p>', |
|
15 | + ], [ |
|
16 | + 'label' => esc_html__('Title', 'site-reviews'), |
|
17 | + 'name' => 'title', |
|
18 | + 'tooltip' => __('Enter a custom shortcode heading.', 'site-reviews'), |
|
19 | + 'type' => 'textbox', |
|
20 | + ], [ |
|
21 | + 'label' => esc_html__('Description', 'site-reviews'), |
|
22 | + 'minHeight' => 60, |
|
23 | + 'minWidth' => 240, |
|
24 | + 'multiline' => true, |
|
25 | + 'name' => 'description', |
|
26 | + 'tooltip' => __('Enter a custom shortcode description.', 'site-reviews'), |
|
27 | + 'type' => 'textbox', |
|
28 | + ], |
|
29 | + $this->getCategories(__('Automatically assign a category to reviews submitted with this shortcode.', 'site-reviews')), |
|
30 | + [ |
|
31 | + 'label' => esc_html__('Assign To', 'site-reviews'), |
|
32 | + 'name' => 'assign_to', |
|
33 | + 'tooltip' => __('Assign submitted reviews to a custom page/post ID. You can also enter "post_id" to assign reviews to the ID of the current page.', 'site-reviews'), |
|
34 | + 'type' => 'textbox', |
|
35 | + ], [ |
|
36 | + 'label' => esc_html__('Classes', 'site-reviews'), |
|
37 | + 'name' => 'class', |
|
38 | + 'tooltip' => __('Add custom CSS classes to the shortcode.', 'site-reviews'), |
|
39 | + 'type' => 'textbox', |
|
40 | + ], [ |
|
41 | + 'columns' => 2, |
|
42 | + 'items' => $this->getHideOptions(), |
|
43 | + 'label' => esc_html__('Hide', 'site-reviews'), |
|
44 | + 'layout' => 'grid', |
|
45 | + 'spacing' => 5, |
|
46 | + 'type' => 'container', |
|
47 | + ], [ |
|
48 | + 'hidden' => true, |
|
49 | + 'name' => 'id', |
|
50 | + 'type' => 'textbox', |
|
51 | + ], ]; |
|
52 | + } |
|
53 | 53 | } |
@@ -4,49 +4,49 @@ |
||
4 | 4 | |
5 | 5 | class SiteReviewsSummaryPopup extends SiteReviewsPopup |
6 | 6 | { |
7 | - /** |
|
8 | - * @return array |
|
9 | - */ |
|
10 | - public function fields() |
|
11 | - { |
|
12 | - return [[ |
|
13 | - 'html' => sprintf('<p class="strong">%s</p>', esc_html__('All settings are optional.', 'site-reviews')), |
|
14 | - 'minWidth' => 320, |
|
15 | - 'type' => 'container', |
|
16 | - ], [ |
|
17 | - 'label' => esc_html__('Title', 'site-reviews'), |
|
18 | - 'name' => 'title', |
|
19 | - 'tooltip' => __('Enter a custom shortcode heading.', 'site-reviews'), |
|
20 | - 'type' => 'textbox', |
|
21 | - ], |
|
22 | - $this->getTypes(__('Which type of review would you like to use?', 'site-reviews')), |
|
23 | - $this->getCategories(__('Limit reviews to this category.', 'site-reviews')), |
|
24 | - [ |
|
25 | - 'label' => esc_html__('Assigned To', 'site-reviews'), |
|
26 | - 'name' => 'assigned_to', |
|
27 | - 'tooltip' => __('Limit reviews to those assigned to this post ID (separate multiple IDs with a comma). You can also enter "post_id" to use the ID of the current page, or "parent_id" to use the ID of the parent page.', 'site-reviews'), |
|
28 | - 'type' => 'textbox', |
|
29 | - ], [ |
|
30 | - 'label' => esc_html__('Schema', 'site-reviews'), |
|
31 | - 'name' => 'schema', |
|
32 | - 'options' => [ |
|
33 | - 'true' => esc_html__('Enable rich snippets', 'site-reviews'), |
|
34 | - 'false' => esc_html__('Disable rich snippets', 'site-reviews'), |
|
35 | - ], |
|
36 | - 'tooltip' => __('Rich snippets are disabled by default.', 'site-reviews'), |
|
37 | - 'type' => 'listbox', |
|
38 | - ], [ |
|
39 | - 'label' => esc_html__('Classes', 'site-reviews'), |
|
40 | - 'name' => 'class', |
|
41 | - 'tooltip' => __('Add custom CSS classes to the shortcode.', 'site-reviews'), |
|
42 | - 'type' => 'textbox', |
|
43 | - ], [ |
|
44 | - 'columns' => 2, |
|
45 | - 'items' => $this->getHideOptions(), |
|
46 | - 'label' => esc_html__('Hide', 'site-reviews'), |
|
47 | - 'layout' => 'grid', |
|
48 | - 'spacing' => 5, |
|
49 | - 'type' => 'container', |
|
50 | - ], ]; |
|
51 | - } |
|
7 | + /** |
|
8 | + * @return array |
|
9 | + */ |
|
10 | + public function fields() |
|
11 | + { |
|
12 | + return [[ |
|
13 | + 'html' => sprintf('<p class="strong">%s</p>', esc_html__('All settings are optional.', 'site-reviews')), |
|
14 | + 'minWidth' => 320, |
|
15 | + 'type' => 'container', |
|
16 | + ], [ |
|
17 | + 'label' => esc_html__('Title', 'site-reviews'), |
|
18 | + 'name' => 'title', |
|
19 | + 'tooltip' => __('Enter a custom shortcode heading.', 'site-reviews'), |
|
20 | + 'type' => 'textbox', |
|
21 | + ], |
|
22 | + $this->getTypes(__('Which type of review would you like to use?', 'site-reviews')), |
|
23 | + $this->getCategories(__('Limit reviews to this category.', 'site-reviews')), |
|
24 | + [ |
|
25 | + 'label' => esc_html__('Assigned To', 'site-reviews'), |
|
26 | + 'name' => 'assigned_to', |
|
27 | + 'tooltip' => __('Limit reviews to those assigned to this post ID (separate multiple IDs with a comma). You can also enter "post_id" to use the ID of the current page, or "parent_id" to use the ID of the parent page.', 'site-reviews'), |
|
28 | + 'type' => 'textbox', |
|
29 | + ], [ |
|
30 | + 'label' => esc_html__('Schema', 'site-reviews'), |
|
31 | + 'name' => 'schema', |
|
32 | + 'options' => [ |
|
33 | + 'true' => esc_html__('Enable rich snippets', 'site-reviews'), |
|
34 | + 'false' => esc_html__('Disable rich snippets', 'site-reviews'), |
|
35 | + ], |
|
36 | + 'tooltip' => __('Rich snippets are disabled by default.', 'site-reviews'), |
|
37 | + 'type' => 'listbox', |
|
38 | + ], [ |
|
39 | + 'label' => esc_html__('Classes', 'site-reviews'), |
|
40 | + 'name' => 'class', |
|
41 | + 'tooltip' => __('Add custom CSS classes to the shortcode.', 'site-reviews'), |
|
42 | + 'type' => 'textbox', |
|
43 | + ], [ |
|
44 | + 'columns' => 2, |
|
45 | + 'items' => $this->getHideOptions(), |
|
46 | + 'label' => esc_html__('Hide', 'site-reviews'), |
|
47 | + 'layout' => 'grid', |
|
48 | + 'spacing' => 5, |
|
49 | + 'type' => 'container', |
|
50 | + ], ]; |
|
51 | + } |
|
52 | 52 | } |
@@ -4,29 +4,29 @@ |
||
4 | 4 | |
5 | 5 | class SiteReviewsFormShortcode extends Shortcode |
6 | 6 | { |
7 | - protected function hideOptions() |
|
8 | - { |
|
9 | - return [ |
|
10 | - 'rating' => __('Hide the rating field', 'site-reviews'), |
|
11 | - 'title' => __('Hide the title field', 'site-reviews'), |
|
12 | - 'content' => __('Hide the review field', 'site-reviews'), |
|
13 | - 'name' => __('Hide the name field', 'site-reviews'), |
|
14 | - 'email' => __('Hide the email field', 'site-reviews'), |
|
15 | - 'terms' => __('Hide the terms field', 'site-reviews'), |
|
16 | - ]; |
|
17 | - } |
|
7 | + protected function hideOptions() |
|
8 | + { |
|
9 | + return [ |
|
10 | + 'rating' => __('Hide the rating field', 'site-reviews'), |
|
11 | + 'title' => __('Hide the title field', 'site-reviews'), |
|
12 | + 'content' => __('Hide the review field', 'site-reviews'), |
|
13 | + 'name' => __('Hide the name field', 'site-reviews'), |
|
14 | + 'email' => __('Hide the email field', 'site-reviews'), |
|
15 | + 'terms' => __('Hide the terms field', 'site-reviews'), |
|
16 | + ]; |
|
17 | + } |
|
18 | 18 | |
19 | - /** |
|
20 | - * @param array|string $atts |
|
21 | - * @param string $type |
|
22 | - * @return array |
|
23 | - */ |
|
24 | - public function normalizeAtts($atts, $type = 'shortcode') |
|
25 | - { |
|
26 | - $atts = parent::normalizeAtts($atts, $type); |
|
27 | - if (empty($atts['id'])) { |
|
28 | - $atts['id'] = substr(md5(serialize($atts)), 0, 8); |
|
29 | - } |
|
30 | - return $atts; |
|
31 | - } |
|
19 | + /** |
|
20 | + * @param array|string $atts |
|
21 | + * @param string $type |
|
22 | + * @return array |
|
23 | + */ |
|
24 | + public function normalizeAtts($atts, $type = 'shortcode') |
|
25 | + { |
|
26 | + $atts = parent::normalizeAtts($atts, $type); |
|
27 | + if (empty($atts['id'])) { |
|
28 | + $atts['id'] = substr(md5(serialize($atts)), 0, 8); |
|
29 | + } |
|
30 | + return $atts; |
|
31 | + } |
|
32 | 32 | } |
@@ -4,84 +4,84 @@ |
||
4 | 4 | |
5 | 5 | class SiteReviewsPopup extends TinymcePopupGenerator |
6 | 6 | { |
7 | - /** |
|
8 | - * @return array |
|
9 | - */ |
|
10 | - public function fields() |
|
11 | - { |
|
12 | - return [[ |
|
13 | - 'html' => sprintf('<p class="strong">%s</p>', esc_html__('All settings are optional.', 'site-reviews')), |
|
14 | - 'minWidth' => 320, |
|
15 | - 'type' => 'container', |
|
16 | - ], [ |
|
17 | - 'label' => esc_html__('Title', 'site-reviews'), |
|
18 | - 'name' => 'title', |
|
19 | - 'tooltip' => __('Enter a custom shortcode heading.', 'site-reviews'), |
|
20 | - 'type' => 'textbox', |
|
21 | - ], [ |
|
22 | - 'label' => esc_html__('Count', 'site-reviews'), |
|
23 | - 'maxLength' => 5, |
|
24 | - 'name' => 'count', |
|
25 | - 'size' => 3, |
|
26 | - 'text' => '10', |
|
27 | - 'tooltip' => __('How many reviews would you like to display (default: 10)?', 'site-reviews'), |
|
28 | - 'type' => 'textbox', |
|
29 | - ], [ |
|
30 | - 'label' => esc_html__('Rating', 'site-reviews'), |
|
31 | - 'name' => 'rating', |
|
32 | - 'options' => [ |
|
33 | - '5' => esc_html(sprintf(_n('%s star', '%s stars', 5, 'site-reviews'), 5)), |
|
34 | - '4' => esc_html(sprintf(_n('%s star', '%s stars', 4, 'site-reviews'), 4)), |
|
35 | - '3' => esc_html(sprintf(_n('%s star', '%s stars', 3, 'site-reviews'), 3)), |
|
36 | - '2' => esc_html(sprintf(_n('%s star', '%s stars', 2, 'site-reviews'), 2)), |
|
37 | - '1' => esc_html(sprintf(_n('%s star', '%s stars', 1, 'site-reviews'), 1)), |
|
38 | - '0' => esc_html(__('Unrated', 'site-reviews')), |
|
39 | - ], |
|
40 | - 'tooltip' => __('What is the minimum rating to display (default: 1 star)?', 'site-reviews'), |
|
41 | - 'type' => 'listbox', |
|
42 | - ], [ |
|
43 | - 'label' => esc_html__('Pagination', 'site-reviews'), |
|
44 | - 'name' => 'pagination', |
|
45 | - 'options' => [ |
|
46 | - 'true' => esc_html__('Enable', 'site-reviews'), |
|
47 | - 'ajax' => esc_html__('Enable (using ajax)', 'site-reviews'), |
|
48 | - 'false' => esc_html__('Disable', 'site-reviews'), |
|
49 | - ], |
|
50 | - 'tooltip' => __('When using pagination this shortcode can only be used once on a page. (default: disable)', 'site-reviews'), |
|
51 | - 'type' => 'listbox', |
|
52 | - ], |
|
53 | - $this->getTypes(__('Which type of review would you like to display?', 'site-reviews')), |
|
54 | - $this->getCategories(__('Limit reviews to this category.', 'site-reviews')), |
|
55 | - [ |
|
56 | - 'label' => esc_html__('Assigned To', 'site-reviews'), |
|
57 | - 'name' => 'assigned_to', |
|
58 | - 'tooltip' => __('Limit reviews to those assigned to this post ID (separate multiple IDs with a comma). You can also enter "post_id" to use the ID of the current page, or "parent_id" to use the ID of the parent page.', 'site-reviews'), |
|
59 | - 'type' => 'textbox', |
|
60 | - ], [ |
|
61 | - 'label' => esc_html__('Schema', 'site-reviews'), |
|
62 | - 'name' => 'schema', |
|
63 | - 'options' => [ |
|
64 | - 'true' => esc_html__('Enable rich snippets', 'site-reviews'), |
|
65 | - 'false' => esc_html__('Disable rich snippets', 'site-reviews'), |
|
66 | - ], |
|
67 | - 'tooltip' => __('Rich snippets are disabled by default.', 'site-reviews'), |
|
68 | - 'type' => 'listbox', |
|
69 | - ], [ |
|
70 | - 'label' => esc_html__('Classes', 'site-reviews'), |
|
71 | - 'name' => 'class', |
|
72 | - 'tooltip' => __('Add custom CSS classes to the shortcode.', 'site-reviews'), |
|
73 | - 'type' => 'textbox', |
|
74 | - ], [ |
|
75 | - 'columns' => 2, |
|
76 | - 'items' => $this->getHideOptions(), |
|
77 | - 'label' => esc_html__('Hide', 'site-reviews'), |
|
78 | - 'layout' => 'grid', |
|
79 | - 'spacing' => 5, |
|
80 | - 'type' => 'container', |
|
81 | - ], [ |
|
82 | - 'hidden' => true, |
|
83 | - 'name' => 'id', |
|
84 | - 'type' => 'textbox', |
|
85 | - ], ]; |
|
86 | - } |
|
7 | + /** |
|
8 | + * @return array |
|
9 | + */ |
|
10 | + public function fields() |
|
11 | + { |
|
12 | + return [[ |
|
13 | + 'html' => sprintf('<p class="strong">%s</p>', esc_html__('All settings are optional.', 'site-reviews')), |
|
14 | + 'minWidth' => 320, |
|
15 | + 'type' => 'container', |
|
16 | + ], [ |
|
17 | + 'label' => esc_html__('Title', 'site-reviews'), |
|
18 | + 'name' => 'title', |
|
19 | + 'tooltip' => __('Enter a custom shortcode heading.', 'site-reviews'), |
|
20 | + 'type' => 'textbox', |
|
21 | + ], [ |
|
22 | + 'label' => esc_html__('Count', 'site-reviews'), |
|
23 | + 'maxLength' => 5, |
|
24 | + 'name' => 'count', |
|
25 | + 'size' => 3, |
|
26 | + 'text' => '10', |
|
27 | + 'tooltip' => __('How many reviews would you like to display (default: 10)?', 'site-reviews'), |
|
28 | + 'type' => 'textbox', |
|
29 | + ], [ |
|
30 | + 'label' => esc_html__('Rating', 'site-reviews'), |
|
31 | + 'name' => 'rating', |
|
32 | + 'options' => [ |
|
33 | + '5' => esc_html(sprintf(_n('%s star', '%s stars', 5, 'site-reviews'), 5)), |
|
34 | + '4' => esc_html(sprintf(_n('%s star', '%s stars', 4, 'site-reviews'), 4)), |
|
35 | + '3' => esc_html(sprintf(_n('%s star', '%s stars', 3, 'site-reviews'), 3)), |
|
36 | + '2' => esc_html(sprintf(_n('%s star', '%s stars', 2, 'site-reviews'), 2)), |
|
37 | + '1' => esc_html(sprintf(_n('%s star', '%s stars', 1, 'site-reviews'), 1)), |
|
38 | + '0' => esc_html(__('Unrated', 'site-reviews')), |
|
39 | + ], |
|
40 | + 'tooltip' => __('What is the minimum rating to display (default: 1 star)?', 'site-reviews'), |
|
41 | + 'type' => 'listbox', |
|
42 | + ], [ |
|
43 | + 'label' => esc_html__('Pagination', 'site-reviews'), |
|
44 | + 'name' => 'pagination', |
|
45 | + 'options' => [ |
|
46 | + 'true' => esc_html__('Enable', 'site-reviews'), |
|
47 | + 'ajax' => esc_html__('Enable (using ajax)', 'site-reviews'), |
|
48 | + 'false' => esc_html__('Disable', 'site-reviews'), |
|
49 | + ], |
|
50 | + 'tooltip' => __('When using pagination this shortcode can only be used once on a page. (default: disable)', 'site-reviews'), |
|
51 | + 'type' => 'listbox', |
|
52 | + ], |
|
53 | + $this->getTypes(__('Which type of review would you like to display?', 'site-reviews')), |
|
54 | + $this->getCategories(__('Limit reviews to this category.', 'site-reviews')), |
|
55 | + [ |
|
56 | + 'label' => esc_html__('Assigned To', 'site-reviews'), |
|
57 | + 'name' => 'assigned_to', |
|
58 | + 'tooltip' => __('Limit reviews to those assigned to this post ID (separate multiple IDs with a comma). You can also enter "post_id" to use the ID of the current page, or "parent_id" to use the ID of the parent page.', 'site-reviews'), |
|
59 | + 'type' => 'textbox', |
|
60 | + ], [ |
|
61 | + 'label' => esc_html__('Schema', 'site-reviews'), |
|
62 | + 'name' => 'schema', |
|
63 | + 'options' => [ |
|
64 | + 'true' => esc_html__('Enable rich snippets', 'site-reviews'), |
|
65 | + 'false' => esc_html__('Disable rich snippets', 'site-reviews'), |
|
66 | + ], |
|
67 | + 'tooltip' => __('Rich snippets are disabled by default.', 'site-reviews'), |
|
68 | + 'type' => 'listbox', |
|
69 | + ], [ |
|
70 | + 'label' => esc_html__('Classes', 'site-reviews'), |
|
71 | + 'name' => 'class', |
|
72 | + 'tooltip' => __('Add custom CSS classes to the shortcode.', 'site-reviews'), |
|
73 | + 'type' => 'textbox', |
|
74 | + ], [ |
|
75 | + 'columns' => 2, |
|
76 | + 'items' => $this->getHideOptions(), |
|
77 | + 'label' => esc_html__('Hide', 'site-reviews'), |
|
78 | + 'layout' => 'grid', |
|
79 | + 'spacing' => 5, |
|
80 | + 'type' => 'container', |
|
81 | + ], [ |
|
82 | + 'hidden' => true, |
|
83 | + 'name' => 'id', |
|
84 | + 'type' => 'textbox', |
|
85 | + ], ]; |
|
86 | + } |
|
87 | 87 | } |