@@ -19,120 +19,120 @@ discard block |
||
19 | 19 | */ |
20 | 20 | class Wordlift_Admin_Publisher_Element extends Wordlift_Admin_Author_Element { |
21 | 21 | |
22 | - /** |
|
23 | - * The {@link Wordlift_Publisher_Service} instance. |
|
24 | - * |
|
25 | - * @since 3.11.0 |
|
26 | - * @access private |
|
27 | - * @var \Wordlift_Publisher_Service $publisher_service The {@link Wordlift_Publisher_Service} instance. |
|
28 | - */ |
|
29 | - private $publisher_service; |
|
30 | - |
|
31 | - /** |
|
32 | - * @var Wordlift_Admin_Tabs_Element |
|
33 | - */ |
|
34 | - private $tabs_element; |
|
35 | - |
|
36 | - /** |
|
37 | - * Create a {@link Wordlift_Admin_Publisher_Element} instance. |
|
38 | - * |
|
39 | - * @param \Wordlift_Publisher_Service $publisher_service The {@link Wordlift_Publisher_Service} instance. |
|
40 | - * @param \Wordlift_Admin_Tabs_Element $tabs_element The {@link Wordlift_Admin_Tabs_Element} instance. |
|
41 | - * @param \Wordlift_Admin_Select2_Element $select_element The {@link Wordlift_Admin_Select_Element} instance. |
|
42 | - * |
|
43 | - * @since 3.11.0 |
|
44 | - */ |
|
45 | - public function __construct( $publisher_service, $tabs_element, $select_element ) { |
|
46 | - parent::__construct( $publisher_service, $select_element ); |
|
47 | - |
|
48 | - $this->publisher_service = $publisher_service; |
|
49 | - |
|
50 | - // Child elements. |
|
51 | - $this->tabs_element = $tabs_element; |
|
52 | - |
|
53 | - } |
|
54 | - |
|
55 | - /** |
|
56 | - * @inheritdoc |
|
57 | - */ |
|
58 | - public function render( $args ) { |
|
59 | - |
|
60 | - // Parse the arguments and merge with default values. |
|
61 | - $params = wp_parse_args( |
|
62 | - $args, |
|
63 | - array( |
|
64 | - 'id' => uniqid( 'wl-input-' ), |
|
65 | - 'name' => uniqid( 'wl-input-' ), |
|
66 | - ) |
|
67 | - ); |
|
68 | - |
|
69 | - // Get the number of potential candidates as publishers. |
|
70 | - $count = $this->publisher_service->count(); |
|
71 | - |
|
72 | - $this->tabs_element->render( |
|
73 | - array( |
|
74 | - 'tabs' => array( |
|
75 | - array( |
|
76 | - 'label' => __( 'Select an Existing Publisher', 'wordlift' ), |
|
77 | - 'callback' => array( $this, 'select' ), |
|
78 | - 'args' => $params, |
|
79 | - ), |
|
80 | - array( |
|
81 | - 'label' => __( 'Create a New Publisher', 'wordlift' ), |
|
82 | - 'callback' => array( $this, 'create' ), |
|
83 | - 'args' => $params, |
|
84 | - ), |
|
85 | - ), |
|
86 | - // Set the default tab according to the number of potential publishers |
|
87 | - // configured in WP: 0 = select, 1 = create. |
|
88 | - 'active' => 0 === $count ? 1 : 0, |
|
89 | - ) |
|
90 | - ); |
|
91 | - |
|
92 | - // Finally return the element instance. |
|
93 | - return $this; |
|
94 | - } |
|
95 | - |
|
96 | - /** |
|
97 | - * Render the publisher's select. |
|
98 | - * |
|
99 | - * @param array $params An array of parameters. |
|
100 | - * |
|
101 | - * @since 3.11.0 |
|
102 | - */ |
|
103 | - public function select( $params ) { |
|
104 | - |
|
105 | - // Get the configured publisher id. In case a publisher id is already configured |
|
106 | - // this must be pre-loaded in the options. |
|
107 | - $publisher_id = Wordlift_Configuration_Service::get_instance()->get_publisher_id(); |
|
108 | - |
|
109 | - // Get the publisher data. |
|
110 | - $data = $this->publisher_service->query(); |
|
111 | - array_unshift( |
|
112 | - $data, |
|
113 | - array( |
|
114 | - 'id' => '', |
|
115 | - 'text' => _x( '(none)', 'Publisher Select in Settings Screen.', 'wordlift' ), |
|
116 | - 'type' => '', |
|
117 | - 'thumbnail_url' => false, |
|
118 | - ) |
|
119 | - ); |
|
120 | - |
|
121 | - // Call the select internal render. |
|
122 | - $this->do_render( $params, $publisher_id, $data ); |
|
123 | - |
|
124 | - } |
|
125 | - |
|
126 | - /** |
|
127 | - * Render the 'create publisher' form. |
|
128 | - * |
|
129 | - * @param array $params An array of parameters. |
|
130 | - * |
|
131 | - * @since 3.11.0 |
|
132 | - */ |
|
22 | + /** |
|
23 | + * The {@link Wordlift_Publisher_Service} instance. |
|
24 | + * |
|
25 | + * @since 3.11.0 |
|
26 | + * @access private |
|
27 | + * @var \Wordlift_Publisher_Service $publisher_service The {@link Wordlift_Publisher_Service} instance. |
|
28 | + */ |
|
29 | + private $publisher_service; |
|
30 | + |
|
31 | + /** |
|
32 | + * @var Wordlift_Admin_Tabs_Element |
|
33 | + */ |
|
34 | + private $tabs_element; |
|
35 | + |
|
36 | + /** |
|
37 | + * Create a {@link Wordlift_Admin_Publisher_Element} instance. |
|
38 | + * |
|
39 | + * @param \Wordlift_Publisher_Service $publisher_service The {@link Wordlift_Publisher_Service} instance. |
|
40 | + * @param \Wordlift_Admin_Tabs_Element $tabs_element The {@link Wordlift_Admin_Tabs_Element} instance. |
|
41 | + * @param \Wordlift_Admin_Select2_Element $select_element The {@link Wordlift_Admin_Select_Element} instance. |
|
42 | + * |
|
43 | + * @since 3.11.0 |
|
44 | + */ |
|
45 | + public function __construct( $publisher_service, $tabs_element, $select_element ) { |
|
46 | + parent::__construct( $publisher_service, $select_element ); |
|
47 | + |
|
48 | + $this->publisher_service = $publisher_service; |
|
49 | + |
|
50 | + // Child elements. |
|
51 | + $this->tabs_element = $tabs_element; |
|
52 | + |
|
53 | + } |
|
54 | + |
|
55 | + /** |
|
56 | + * @inheritdoc |
|
57 | + */ |
|
58 | + public function render( $args ) { |
|
59 | + |
|
60 | + // Parse the arguments and merge with default values. |
|
61 | + $params = wp_parse_args( |
|
62 | + $args, |
|
63 | + array( |
|
64 | + 'id' => uniqid( 'wl-input-' ), |
|
65 | + 'name' => uniqid( 'wl-input-' ), |
|
66 | + ) |
|
67 | + ); |
|
68 | + |
|
69 | + // Get the number of potential candidates as publishers. |
|
70 | + $count = $this->publisher_service->count(); |
|
71 | + |
|
72 | + $this->tabs_element->render( |
|
73 | + array( |
|
74 | + 'tabs' => array( |
|
75 | + array( |
|
76 | + 'label' => __( 'Select an Existing Publisher', 'wordlift' ), |
|
77 | + 'callback' => array( $this, 'select' ), |
|
78 | + 'args' => $params, |
|
79 | + ), |
|
80 | + array( |
|
81 | + 'label' => __( 'Create a New Publisher', 'wordlift' ), |
|
82 | + 'callback' => array( $this, 'create' ), |
|
83 | + 'args' => $params, |
|
84 | + ), |
|
85 | + ), |
|
86 | + // Set the default tab according to the number of potential publishers |
|
87 | + // configured in WP: 0 = select, 1 = create. |
|
88 | + 'active' => 0 === $count ? 1 : 0, |
|
89 | + ) |
|
90 | + ); |
|
91 | + |
|
92 | + // Finally return the element instance. |
|
93 | + return $this; |
|
94 | + } |
|
95 | + |
|
96 | + /** |
|
97 | + * Render the publisher's select. |
|
98 | + * |
|
99 | + * @param array $params An array of parameters. |
|
100 | + * |
|
101 | + * @since 3.11.0 |
|
102 | + */ |
|
103 | + public function select( $params ) { |
|
104 | + |
|
105 | + // Get the configured publisher id. In case a publisher id is already configured |
|
106 | + // this must be pre-loaded in the options. |
|
107 | + $publisher_id = Wordlift_Configuration_Service::get_instance()->get_publisher_id(); |
|
108 | + |
|
109 | + // Get the publisher data. |
|
110 | + $data = $this->publisher_service->query(); |
|
111 | + array_unshift( |
|
112 | + $data, |
|
113 | + array( |
|
114 | + 'id' => '', |
|
115 | + 'text' => _x( '(none)', 'Publisher Select in Settings Screen.', 'wordlift' ), |
|
116 | + 'type' => '', |
|
117 | + 'thumbnail_url' => false, |
|
118 | + ) |
|
119 | + ); |
|
120 | + |
|
121 | + // Call the select internal render. |
|
122 | + $this->do_render( $params, $publisher_id, $data ); |
|
123 | + |
|
124 | + } |
|
125 | + |
|
126 | + /** |
|
127 | + * Render the 'create publisher' form. |
|
128 | + * |
|
129 | + * @param array $params An array of parameters. |
|
130 | + * |
|
131 | + * @since 3.11.0 |
|
132 | + */ |
|
133 | 133 | // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
134 | - public function create( $params ) { |
|
135 | - ?> |
|
134 | + public function create( $params ) { |
|
135 | + ?> |
|
136 | 136 | <p> |
137 | 137 | <strong><?php esc_html_e( 'Are you publishing as an individual or as a company?', 'wordlift' ); ?></strong> |
138 | 138 | </p> |
@@ -197,6 +197,6 @@ discard block |
||
197 | 197 | </p> |
198 | 198 | </div> |
199 | 199 | <?php |
200 | - } |
|
200 | + } |
|
201 | 201 | |
202 | 202 | } |
@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | * |
43 | 43 | * @since 3.11.0 |
44 | 44 | */ |
45 | - public function __construct( $publisher_service, $tabs_element, $select_element ) { |
|
46 | - parent::__construct( $publisher_service, $select_element ); |
|
45 | + public function __construct($publisher_service, $tabs_element, $select_element) { |
|
46 | + parent::__construct($publisher_service, $select_element); |
|
47 | 47 | |
48 | 48 | $this->publisher_service = $publisher_service; |
49 | 49 | |
@@ -55,14 +55,14 @@ discard block |
||
55 | 55 | /** |
56 | 56 | * @inheritdoc |
57 | 57 | */ |
58 | - public function render( $args ) { |
|
58 | + public function render($args) { |
|
59 | 59 | |
60 | 60 | // Parse the arguments and merge with default values. |
61 | 61 | $params = wp_parse_args( |
62 | 62 | $args, |
63 | 63 | array( |
64 | - 'id' => uniqid( 'wl-input-' ), |
|
65 | - 'name' => uniqid( 'wl-input-' ), |
|
64 | + 'id' => uniqid('wl-input-'), |
|
65 | + 'name' => uniqid('wl-input-'), |
|
66 | 66 | ) |
67 | 67 | ); |
68 | 68 | |
@@ -73,13 +73,13 @@ discard block |
||
73 | 73 | array( |
74 | 74 | 'tabs' => array( |
75 | 75 | array( |
76 | - 'label' => __( 'Select an Existing Publisher', 'wordlift' ), |
|
77 | - 'callback' => array( $this, 'select' ), |
|
76 | + 'label' => __('Select an Existing Publisher', 'wordlift'), |
|
77 | + 'callback' => array($this, 'select'), |
|
78 | 78 | 'args' => $params, |
79 | 79 | ), |
80 | 80 | array( |
81 | - 'label' => __( 'Create a New Publisher', 'wordlift' ), |
|
82 | - 'callback' => array( $this, 'create' ), |
|
81 | + 'label' => __('Create a New Publisher', 'wordlift'), |
|
82 | + 'callback' => array($this, 'create'), |
|
83 | 83 | 'args' => $params, |
84 | 84 | ), |
85 | 85 | ), |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | * |
101 | 101 | * @since 3.11.0 |
102 | 102 | */ |
103 | - public function select( $params ) { |
|
103 | + public function select($params) { |
|
104 | 104 | |
105 | 105 | // Get the configured publisher id. In case a publisher id is already configured |
106 | 106 | // this must be pre-loaded in the options. |
@@ -112,14 +112,14 @@ discard block |
||
112 | 112 | $data, |
113 | 113 | array( |
114 | 114 | 'id' => '', |
115 | - 'text' => _x( '(none)', 'Publisher Select in Settings Screen.', 'wordlift' ), |
|
115 | + 'text' => _x('(none)', 'Publisher Select in Settings Screen.', 'wordlift'), |
|
116 | 116 | 'type' => '', |
117 | 117 | 'thumbnail_url' => false, |
118 | 118 | ) |
119 | 119 | ); |
120 | 120 | |
121 | 121 | // Call the select internal render. |
122 | - $this->do_render( $params, $publisher_id, $data ); |
|
122 | + $this->do_render($params, $publisher_id, $data); |
|
123 | 123 | |
124 | 124 | } |
125 | 125 | |
@@ -131,10 +131,10 @@ discard block |
||
131 | 131 | * @since 3.11.0 |
132 | 132 | */ |
133 | 133 | // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
134 | - public function create( $params ) { |
|
134 | + public function create($params) { |
|
135 | 135 | ?> |
136 | 136 | <p> |
137 | - <strong><?php esc_html_e( 'Are you publishing as an individual or as a company?', 'wordlift' ); ?></strong> |
|
137 | + <strong><?php esc_html_e('Are you publishing as an individual or as a company?', 'wordlift'); ?></strong> |
|
138 | 138 | </p> |
139 | 139 | |
140 | 140 | <p id="wl-publisher-type"> |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | > |
149 | 149 | |
150 | 150 | <label for="wl-publisher-person"> |
151 | - <?php esc_html_e( 'Person', 'wordlift' ); ?> |
|
151 | + <?php esc_html_e('Person', 'wordlift'); ?> |
|
152 | 152 | </label> |
153 | 153 | </span> |
154 | 154 | |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | > |
162 | 162 | |
163 | 163 | <label for="wl-publisher-company"> |
164 | - <?php esc_html_e( 'Company', 'wordlift' ); ?> |
|
164 | + <?php esc_html_e('Company', 'wordlift'); ?> |
|
165 | 165 | </label> |
166 | 166 | </span> |
167 | 167 | </p> |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | <input |
171 | 171 | type="text" |
172 | 172 | name="wl_publisher[name]" |
173 | - placeholder="<?php echo esc_attr__( "What's your name?", 'wordlift' ); ?>" |
|
173 | + placeholder="<?php echo esc_attr__("What's your name?", 'wordlift'); ?>" |
|
174 | 174 | > |
175 | 175 | </p> |
176 | 176 | |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | /> |
183 | 183 | |
184 | 184 | <p> |
185 | - <b><?php esc_html_e( "Choose the publisher's Logo", 'wordlift' ); ?></b> |
|
185 | + <b><?php esc_html_e("Choose the publisher's Logo", 'wordlift'); ?></b> |
|
186 | 186 | </p> |
187 | 187 | |
188 | 188 | <p> |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | type="button" |
193 | 193 | class="button" |
194 | 194 | id="wl-publisher-media-uploader"> |
195 | - <?php esc_html_e( 'Select an existing image or upload a new one', 'wordlift' ); ?> |
|
195 | + <?php esc_html_e('Select an existing image or upload a new one', 'wordlift'); ?> |
|
196 | 196 | </button> |
197 | 197 | </p> |
198 | 198 | </div> |
@@ -19,55 +19,55 @@ |
||
19 | 19 | */ |
20 | 20 | class Wordlift_Admin_Settings_Analytics_Page_Action_Link { |
21 | 21 | |
22 | - /** |
|
23 | - * The {@link Wordlift_Admin_Settings_Analytics_Page} instance. |
|
24 | - * |
|
25 | - * @since 3.11.0 |
|
26 | - * @access private |
|
27 | - * @var \Wordlift_Admin_Settings_Analytics_Page $settings_page The {@link Wordlift_Admin_Settings_Analytics_Page} instance. |
|
28 | - */ |
|
29 | - private $settings_page; |
|
22 | + /** |
|
23 | + * The {@link Wordlift_Admin_Settings_Analytics_Page} instance. |
|
24 | + * |
|
25 | + * @since 3.11.0 |
|
26 | + * @access private |
|
27 | + * @var \Wordlift_Admin_Settings_Analytics_Page $settings_page The {@link Wordlift_Admin_Settings_Analytics_Page} instance. |
|
28 | + */ |
|
29 | + private $settings_page; |
|
30 | 30 | |
31 | - /** |
|
32 | - * Create a {@link Wordlift_Admin_Settings_Analytics_Page_Action_Link} instance. |
|
33 | - * |
|
34 | - * @since 3.11.0 |
|
35 | - * |
|
36 | - * @param \Wordlift_Admin_Settings_Analytics_Page $settings_page The {@link Wordlift_Admin_Settings_Analytics_Page} instance. |
|
37 | - */ |
|
38 | - public function __construct( $settings_page ) { |
|
31 | + /** |
|
32 | + * Create a {@link Wordlift_Admin_Settings_Analytics_Page_Action_Link} instance. |
|
33 | + * |
|
34 | + * @since 3.11.0 |
|
35 | + * |
|
36 | + * @param \Wordlift_Admin_Settings_Analytics_Page $settings_page The {@link Wordlift_Admin_Settings_Analytics_Page} instance. |
|
37 | + */ |
|
38 | + public function __construct( $settings_page ) { |
|
39 | 39 | |
40 | - $this->settings_page = $settings_page; |
|
40 | + $this->settings_page = $settings_page; |
|
41 | 41 | |
42 | - } |
|
42 | + } |
|
43 | 43 | |
44 | - /** |
|
45 | - * Create a link to the WordLift settings page. |
|
46 | - * |
|
47 | - * @since 3.11.0 |
|
48 | - * |
|
49 | - * @param array $links An array of links. |
|
50 | - * |
|
51 | - * @return array An array of links including those added by the plugin. |
|
52 | - */ |
|
53 | - public function action_links( $links ) { |
|
44 | + /** |
|
45 | + * Create a link to the WordLift settings page. |
|
46 | + * |
|
47 | + * @since 3.11.0 |
|
48 | + * |
|
49 | + * @param array $links An array of links. |
|
50 | + * |
|
51 | + * @return array An array of links including those added by the plugin. |
|
52 | + */ |
|
53 | + public function action_links( $links ) { |
|
54 | 54 | |
55 | - // Get the menu slug from the page, then prepare the path, hence the url. |
|
56 | - $menu_slug = $this->settings_page->get_menu_slug(); |
|
57 | - $path = "admin.php?page=$menu_slug"; |
|
58 | - $url = get_admin_url( null, $path ); |
|
55 | + // Get the menu slug from the page, then prepare the path, hence the url. |
|
56 | + $menu_slug = $this->settings_page->get_menu_slug(); |
|
57 | + $path = "admin.php?page=$menu_slug"; |
|
58 | + $url = get_admin_url( null, $path ); |
|
59 | 59 | |
60 | - // Add our own link to the list of links. |
|
61 | - return array_merge( |
|
62 | - $links, |
|
63 | - array( |
|
64 | - sprintf( |
|
65 | - '<a href="%1$s">%2$s</a>', |
|
66 | - esc_url( $url ), |
|
67 | - esc_html__( 'Analytics Settings', 'wordlift' ) |
|
68 | - ), |
|
69 | - ) |
|
70 | - ); |
|
71 | - } |
|
60 | + // Add our own link to the list of links. |
|
61 | + return array_merge( |
|
62 | + $links, |
|
63 | + array( |
|
64 | + sprintf( |
|
65 | + '<a href="%1$s">%2$s</a>', |
|
66 | + esc_url( $url ), |
|
67 | + esc_html__( 'Analytics Settings', 'wordlift' ) |
|
68 | + ), |
|
69 | + ) |
|
70 | + ); |
|
71 | + } |
|
72 | 72 | |
73 | 73 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | * |
36 | 36 | * @param \Wordlift_Admin_Settings_Analytics_Page $settings_page The {@link Wordlift_Admin_Settings_Analytics_Page} instance. |
37 | 37 | */ |
38 | - public function __construct( $settings_page ) { |
|
38 | + public function __construct($settings_page) { |
|
39 | 39 | |
40 | 40 | $this->settings_page = $settings_page; |
41 | 41 | |
@@ -50,12 +50,12 @@ discard block |
||
50 | 50 | * |
51 | 51 | * @return array An array of links including those added by the plugin. |
52 | 52 | */ |
53 | - public function action_links( $links ) { |
|
53 | + public function action_links($links) { |
|
54 | 54 | |
55 | 55 | // Get the menu slug from the page, then prepare the path, hence the url. |
56 | 56 | $menu_slug = $this->settings_page->get_menu_slug(); |
57 | 57 | $path = "admin.php?page=$menu_slug"; |
58 | - $url = get_admin_url( null, $path ); |
|
58 | + $url = get_admin_url(null, $path); |
|
59 | 59 | |
60 | 60 | // Add our own link to the list of links. |
61 | 61 | return array_merge( |
@@ -63,8 +63,8 @@ discard block |
||
63 | 63 | array( |
64 | 64 | sprintf( |
65 | 65 | '<a href="%1$s">%2$s</a>', |
66 | - esc_url( $url ), |
|
67 | - esc_html__( 'Analytics Settings', 'wordlift' ) |
|
66 | + esc_url($url), |
|
67 | + esc_html__('Analytics Settings', 'wordlift') |
|
68 | 68 | ), |
69 | 69 | ) |
70 | 70 | ); |
@@ -25,24 +25,24 @@ discard block |
||
25 | 25 | */ |
26 | 26 | function wl_transition_post_status( $new_status, $old_status, $post ) { |
27 | 27 | |
28 | - // transition from *published* to any other status: delete the post. |
|
29 | - if ( 'publish' === $old_status && 'publish' !== $new_status ) { |
|
30 | - // Delete the post from the triple store. |
|
31 | - rl_delete_post( $post ); |
|
32 | - |
|
33 | - // Remove all relation instances for the current post from `wl_relation_instances`. |
|
34 | - wl_core_delete_relation_instances( $post->ID ); |
|
35 | - } |
|
36 | - |
|
37 | - // when a post is published, then all the referenced entities must be published. |
|
38 | - if ( 'publish' !== $old_status && 'publish' === $new_status |
|
39 | - // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
40 | - && apply_filters( 'wl_feature__enable__entity-auto-publish', true ) ) { |
|
41 | - |
|
42 | - foreach ( wl_core_get_related_entity_ids( $post->ID ) as $entity_id ) { |
|
43 | - wl_update_post_status( $entity_id, 'publish' ); |
|
44 | - } |
|
45 | - } |
|
28 | + // transition from *published* to any other status: delete the post. |
|
29 | + if ( 'publish' === $old_status && 'publish' !== $new_status ) { |
|
30 | + // Delete the post from the triple store. |
|
31 | + rl_delete_post( $post ); |
|
32 | + |
|
33 | + // Remove all relation instances for the current post from `wl_relation_instances`. |
|
34 | + wl_core_delete_relation_instances( $post->ID ); |
|
35 | + } |
|
36 | + |
|
37 | + // when a post is published, then all the referenced entities must be published. |
|
38 | + if ( 'publish' !== $old_status && 'publish' === $new_status |
|
39 | + // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
40 | + && apply_filters( 'wl_feature__enable__entity-auto-publish', true ) ) { |
|
41 | + |
|
42 | + foreach ( wl_core_get_related_entity_ids( $post->ID ) as $entity_id ) { |
|
43 | + wl_update_post_status( $entity_id, 'publish' ); |
|
44 | + } |
|
45 | + } |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | // hook save events. |
@@ -55,10 +55,10 @@ discard block |
||
55 | 55 | */ |
56 | 56 | function rl_delete_post( $post ) { |
57 | 57 | |
58 | - $post_id = ( is_numeric( $post ) ? $post : $post->ID ); |
|
58 | + $post_id = ( is_numeric( $post ) ? $post : $post->ID ); |
|
59 | 59 | |
60 | - // Remove the post. |
|
61 | - do_action( 'wl_legacy_linked_data__remove', $post_id ); |
|
60 | + // Remove the post. |
|
61 | + do_action( 'wl_legacy_linked_data__remove', $post_id ); |
|
62 | 62 | |
63 | 63 | } |
64 | 64 | |
@@ -70,32 +70,32 @@ discard block |
||
70 | 70 | */ |
71 | 71 | function wl_update_post_status( $post_id, $status ) { |
72 | 72 | |
73 | - global $wpdb; |
|
73 | + global $wpdb; |
|
74 | 74 | |
75 | - $post = get_post( $post_id ); |
|
76 | - if ( ! $post ) { |
|
77 | - return; |
|
78 | - } |
|
75 | + $post = get_post( $post_id ); |
|
76 | + if ( ! $post ) { |
|
77 | + return; |
|
78 | + } |
|
79 | 79 | |
80 | - if ( $status === $post->post_status ) { |
|
81 | - return; |
|
82 | - } |
|
80 | + if ( $status === $post->post_status ) { |
|
81 | + return; |
|
82 | + } |
|
83 | 83 | |
84 | - $wpdb->update( $wpdb->posts, array( 'post_status' => $status ), array( 'ID' => $post->ID ) ); |
|
84 | + $wpdb->update( $wpdb->posts, array( 'post_status' => $status ), array( 'ID' => $post->ID ) ); |
|
85 | 85 | |
86 | - clean_post_cache( $post->ID ); |
|
86 | + clean_post_cache( $post->ID ); |
|
87 | 87 | |
88 | - $old_status = $post->post_status; |
|
89 | - $post->post_status = $status; |
|
88 | + $old_status = $post->post_status; |
|
89 | + $post->post_status = $status; |
|
90 | 90 | |
91 | - wp_transition_post_status( $status, $old_status, $post ); |
|
91 | + wp_transition_post_status( $status, $old_status, $post ); |
|
92 | 92 | |
93 | - /** This action is documented in wp-includes/post.php */ |
|
94 | - do_action( 'edit_post', $post->ID, $post ); |
|
95 | - /** This action is documented in wp-includes/post.php */ |
|
96 | - do_action( "save_post_{$post->post_type}", $post->ID, $post, true ); |
|
97 | - /** This action is documented in wp-includes/post.php */ |
|
98 | - do_action( 'wl_linked_data_save_post', $post->ID ); |
|
99 | - /** This action is documented in wp-includes/post.php */ |
|
100 | - do_action( 'wp_insert_post', $post->ID, $post, true ); |
|
93 | + /** This action is documented in wp-includes/post.php */ |
|
94 | + do_action( 'edit_post', $post->ID, $post ); |
|
95 | + /** This action is documented in wp-includes/post.php */ |
|
96 | + do_action( "save_post_{$post->post_type}", $post->ID, $post, true ); |
|
97 | + /** This action is documented in wp-includes/post.php */ |
|
98 | + do_action( 'wl_linked_data_save_post', $post->ID ); |
|
99 | + /** This action is documented in wp-includes/post.php */ |
|
100 | + do_action( 'wp_insert_post', $post->ID, $post, true ); |
|
101 | 101 | } |
@@ -23,42 +23,42 @@ discard block |
||
23 | 23 | * @param string $old_status The old post status |
24 | 24 | * @param array $post An array with the post data |
25 | 25 | */ |
26 | -function wl_transition_post_status( $new_status, $old_status, $post ) { |
|
26 | +function wl_transition_post_status($new_status, $old_status, $post) { |
|
27 | 27 | |
28 | 28 | // transition from *published* to any other status: delete the post. |
29 | - if ( 'publish' === $old_status && 'publish' !== $new_status ) { |
|
29 | + if ('publish' === $old_status && 'publish' !== $new_status) { |
|
30 | 30 | // Delete the post from the triple store. |
31 | - rl_delete_post( $post ); |
|
31 | + rl_delete_post($post); |
|
32 | 32 | |
33 | 33 | // Remove all relation instances for the current post from `wl_relation_instances`. |
34 | - wl_core_delete_relation_instances( $post->ID ); |
|
34 | + wl_core_delete_relation_instances($post->ID); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | // when a post is published, then all the referenced entities must be published. |
38 | - if ( 'publish' !== $old_status && 'publish' === $new_status |
|
38 | + if ('publish' !== $old_status && 'publish' === $new_status |
|
39 | 39 | // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
40 | - && apply_filters( 'wl_feature__enable__entity-auto-publish', true ) ) { |
|
40 | + && apply_filters('wl_feature__enable__entity-auto-publish', true)) { |
|
41 | 41 | |
42 | - foreach ( wl_core_get_related_entity_ids( $post->ID ) as $entity_id ) { |
|
43 | - wl_update_post_status( $entity_id, 'publish' ); |
|
42 | + foreach (wl_core_get_related_entity_ids($post->ID) as $entity_id) { |
|
43 | + wl_update_post_status($entity_id, 'publish'); |
|
44 | 44 | } |
45 | 45 | } |
46 | 46 | } |
47 | 47 | |
48 | 48 | // hook save events. |
49 | -add_action( 'transition_post_status', 'wl_transition_post_status', 10, 3 ); |
|
49 | +add_action('transition_post_status', 'wl_transition_post_status', 10, 3); |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * Delete the specified post from the triple store. |
53 | 53 | * |
54 | 54 | * @param array|int $post An array of post data |
55 | 55 | */ |
56 | -function rl_delete_post( $post ) { |
|
56 | +function rl_delete_post($post) { |
|
57 | 57 | |
58 | - $post_id = ( is_numeric( $post ) ? $post : $post->ID ); |
|
58 | + $post_id = (is_numeric($post) ? $post : $post->ID); |
|
59 | 59 | |
60 | 60 | // Remove the post. |
61 | - do_action( 'wl_legacy_linked_data__remove', $post_id ); |
|
61 | + do_action('wl_legacy_linked_data__remove', $post_id); |
|
62 | 62 | |
63 | 63 | } |
64 | 64 | |
@@ -68,34 +68,34 @@ discard block |
||
68 | 68 | * @param int $post_id The post ID |
69 | 69 | * @param string $status The new status |
70 | 70 | */ |
71 | -function wl_update_post_status( $post_id, $status ) { |
|
71 | +function wl_update_post_status($post_id, $status) { |
|
72 | 72 | |
73 | 73 | global $wpdb; |
74 | 74 | |
75 | - $post = get_post( $post_id ); |
|
76 | - if ( ! $post ) { |
|
75 | + $post = get_post($post_id); |
|
76 | + if ( ! $post) { |
|
77 | 77 | return; |
78 | 78 | } |
79 | 79 | |
80 | - if ( $status === $post->post_status ) { |
|
80 | + if ($status === $post->post_status) { |
|
81 | 81 | return; |
82 | 82 | } |
83 | 83 | |
84 | - $wpdb->update( $wpdb->posts, array( 'post_status' => $status ), array( 'ID' => $post->ID ) ); |
|
84 | + $wpdb->update($wpdb->posts, array('post_status' => $status), array('ID' => $post->ID)); |
|
85 | 85 | |
86 | - clean_post_cache( $post->ID ); |
|
86 | + clean_post_cache($post->ID); |
|
87 | 87 | |
88 | 88 | $old_status = $post->post_status; |
89 | 89 | $post->post_status = $status; |
90 | 90 | |
91 | - wp_transition_post_status( $status, $old_status, $post ); |
|
91 | + wp_transition_post_status($status, $old_status, $post); |
|
92 | 92 | |
93 | 93 | /** This action is documented in wp-includes/post.php */ |
94 | - do_action( 'edit_post', $post->ID, $post ); |
|
94 | + do_action('edit_post', $post->ID, $post); |
|
95 | 95 | /** This action is documented in wp-includes/post.php */ |
96 | - do_action( "save_post_{$post->post_type}", $post->ID, $post, true ); |
|
96 | + do_action("save_post_{$post->post_type}", $post->ID, $post, true); |
|
97 | 97 | /** This action is documented in wp-includes/post.php */ |
98 | - do_action( 'wl_linked_data_save_post', $post->ID ); |
|
98 | + do_action('wl_linked_data_save_post', $post->ID); |
|
99 | 99 | /** This action is documented in wp-includes/post.php */ |
100 | - do_action( 'wp_insert_post', $post->ID, $post, true ); |
|
100 | + do_action('wp_insert_post', $post->ID, $post, true); |
|
101 | 101 | } |
@@ -15,25 +15,25 @@ discard block |
||
15 | 15 | */ |
16 | 16 | function wl_admin_menu() { |
17 | 17 | |
18 | - $menu_slug = 'wl_admin_menu'; |
|
19 | - $capability = 'manage_options'; |
|
18 | + $menu_slug = 'wl_admin_menu'; |
|
19 | + $capability = 'manage_options'; |
|
20 | 20 | |
21 | - // see http://codex.wordpress.org/Function_Reference/add_menu_page |
|
22 | - add_menu_page( |
|
23 | - __( 'WordLift', 'wordlift' ), // page title |
|
24 | - __( 'WordLift', 'wordlift' ), // menu title |
|
25 | - $capability, // capabilities |
|
26 | - $menu_slug, // menu slug |
|
27 | - // 'wl_admin_menu_callback', // TODO: function callback to draw the coming dashboard |
|
28 | - 'wl_configuration_admin_menu_callback', |
|
29 | - WP_CONTENT_URL . '/plugins/wordlift/images/svg/wl-logo-icon.svg' |
|
30 | - ); // icon URL 20x20 px |
|
21 | + // see http://codex.wordpress.org/Function_Reference/add_menu_page |
|
22 | + add_menu_page( |
|
23 | + __( 'WordLift', 'wordlift' ), // page title |
|
24 | + __( 'WordLift', 'wordlift' ), // menu title |
|
25 | + $capability, // capabilities |
|
26 | + $menu_slug, // menu slug |
|
27 | + // 'wl_admin_menu_callback', // TODO: function callback to draw the coming dashboard |
|
28 | + 'wl_configuration_admin_menu_callback', |
|
29 | + WP_CONTENT_URL . '/plugins/wordlift/images/svg/wl-logo-icon.svg' |
|
30 | + ); // icon URL 20x20 px |
|
31 | 31 | |
32 | - // Call hooked functions. |
|
33 | - do_action( 'wl_admin_menu', $menu_slug, $capability ); |
|
32 | + // Call hooked functions. |
|
33 | + do_action( 'wl_admin_menu', $menu_slug, $capability ); |
|
34 | 34 | |
35 | - // Remove duplicate 'WordLift' subpage created by WordPress. |
|
36 | - remove_submenu_page( $menu_slug, $menu_slug ); |
|
35 | + // Remove duplicate 'WordLift' subpage created by WordPress. |
|
36 | + remove_submenu_page( $menu_slug, $menu_slug ); |
|
37 | 37 | |
38 | 38 | } |
39 | 39 | |
@@ -47,20 +47,20 @@ discard block |
||
47 | 47 | * @since 3.15.0 |
48 | 48 | */ |
49 | 49 | function wl_remove_entity_type_menu() { |
50 | - /* |
|
50 | + /* |
|
51 | 51 | * Remove from the menu links to the entity type admin page when |
52 | 52 | * under non entity hierarchy. |
53 | 53 | */ |
54 | - foreach ( Wordlift_Entity_Service::valid_entity_post_types() as $post_type ) { |
|
55 | - // In the context of admin menues post has no explicit indication of post type in the urls. |
|
56 | - if ( 'post' !== $post_type ) { |
|
57 | - remove_submenu_page( 'edit.php', 'edit-tags.php?taxonomy=' . Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME ); |
|
58 | - } |
|
54 | + foreach ( Wordlift_Entity_Service::valid_entity_post_types() as $post_type ) { |
|
55 | + // In the context of admin menues post has no explicit indication of post type in the urls. |
|
56 | + if ( 'post' !== $post_type ) { |
|
57 | + remove_submenu_page( 'edit.php', 'edit-tags.php?taxonomy=' . Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME ); |
|
58 | + } |
|
59 | 59 | |
60 | - if ( Wordlift_Entity_Service::TYPE_NAME !== $post_type ) { |
|
61 | - remove_submenu_page( 'edit.php?post_type=' . $post_type, 'edit-tags.php?taxonomy=' . Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME . '&post_type=' . $post_type ); |
|
62 | - } |
|
63 | - } |
|
60 | + if ( Wordlift_Entity_Service::TYPE_NAME !== $post_type ) { |
|
61 | + remove_submenu_page( 'edit.php?post_type=' . $post_type, 'edit-tags.php?taxonomy=' . Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME . '&post_type=' . $post_type ); |
|
62 | + } |
|
63 | + } |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | add_action( 'admin_menu', 'wl_remove_entity_type_menu', 100 ); |
@@ -72,12 +72,12 @@ discard block |
||
72 | 72 | */ |
73 | 73 | function wl_admin_menu_callback() { |
74 | 74 | |
75 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
76 | - wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'default' ) ); |
|
77 | - } |
|
75 | + if ( ! current_user_can( 'manage_options' ) ) { |
|
76 | + wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'default' ) ); |
|
77 | + } |
|
78 | 78 | |
79 | - echo '<div class="wrap">'; |
|
80 | - echo '<p>Here is where the form would go if I actually had options.</p>'; |
|
81 | - echo '</div>'; |
|
79 | + echo '<div class="wrap">'; |
|
80 | + echo '<p>Here is where the form would go if I actually had options.</p>'; |
|
81 | + echo '</div>'; |
|
82 | 82 | |
83 | 83 | } |
@@ -20,24 +20,24 @@ discard block |
||
20 | 20 | |
21 | 21 | // see http://codex.wordpress.org/Function_Reference/add_menu_page |
22 | 22 | add_menu_page( |
23 | - __( 'WordLift', 'wordlift' ), // page title |
|
24 | - __( 'WordLift', 'wordlift' ), // menu title |
|
25 | - $capability, // capabilities |
|
26 | - $menu_slug, // menu slug |
|
23 | + __('WordLift', 'wordlift'), // page title |
|
24 | + __('WordLift', 'wordlift'), // menu title |
|
25 | + $capability, // capabilities |
|
26 | + $menu_slug, // menu slug |
|
27 | 27 | // 'wl_admin_menu_callback', // TODO: function callback to draw the coming dashboard |
28 | 28 | 'wl_configuration_admin_menu_callback', |
29 | - WP_CONTENT_URL . '/plugins/wordlift/images/svg/wl-logo-icon.svg' |
|
30 | - ); // icon URL 20x20 px |
|
29 | + WP_CONTENT_URL.'/plugins/wordlift/images/svg/wl-logo-icon.svg' |
|
30 | + ); // icon URL 20x20 px |
|
31 | 31 | |
32 | 32 | // Call hooked functions. |
33 | - do_action( 'wl_admin_menu', $menu_slug, $capability ); |
|
33 | + do_action('wl_admin_menu', $menu_slug, $capability); |
|
34 | 34 | |
35 | 35 | // Remove duplicate 'WordLift' subpage created by WordPress. |
36 | - remove_submenu_page( $menu_slug, $menu_slug ); |
|
36 | + remove_submenu_page($menu_slug, $menu_slug); |
|
37 | 37 | |
38 | 38 | } |
39 | 39 | |
40 | -add_action( 'admin_menu', 'wl_admin_menu' ); |
|
40 | +add_action('admin_menu', 'wl_admin_menu'); |
|
41 | 41 | |
42 | 42 | /** |
43 | 43 | * This function is called by the *admin_menu* hook to remove for the admin menu |
@@ -51,19 +51,19 @@ discard block |
||
51 | 51 | * Remove from the menu links to the entity type admin page when |
52 | 52 | * under non entity hierarchy. |
53 | 53 | */ |
54 | - foreach ( Wordlift_Entity_Service::valid_entity_post_types() as $post_type ) { |
|
54 | + foreach (Wordlift_Entity_Service::valid_entity_post_types() as $post_type) { |
|
55 | 55 | // In the context of admin menues post has no explicit indication of post type in the urls. |
56 | - if ( 'post' !== $post_type ) { |
|
57 | - remove_submenu_page( 'edit.php', 'edit-tags.php?taxonomy=' . Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME ); |
|
56 | + if ('post' !== $post_type) { |
|
57 | + remove_submenu_page('edit.php', 'edit-tags.php?taxonomy='.Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME); |
|
58 | 58 | } |
59 | 59 | |
60 | - if ( Wordlift_Entity_Service::TYPE_NAME !== $post_type ) { |
|
61 | - remove_submenu_page( 'edit.php?post_type=' . $post_type, 'edit-tags.php?taxonomy=' . Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME . '&post_type=' . $post_type ); |
|
60 | + if (Wordlift_Entity_Service::TYPE_NAME !== $post_type) { |
|
61 | + remove_submenu_page('edit.php?post_type='.$post_type, 'edit-tags.php?taxonomy='.Wordlift_Entity_Type_Taxonomy_Service::TAXONOMY_NAME.'&post_type='.$post_type); |
|
62 | 62 | } |
63 | 63 | } |
64 | 64 | } |
65 | 65 | |
66 | -add_action( 'admin_menu', 'wl_remove_entity_type_menu', 100 ); |
|
66 | +add_action('admin_menu', 'wl_remove_entity_type_menu', 100); |
|
67 | 67 | |
68 | 68 | /** |
69 | 69 | * This function is called as a callback by the *wl_admin_menu* to display the actual page. |
@@ -72,8 +72,8 @@ discard block |
||
72 | 72 | */ |
73 | 73 | function wl_admin_menu_callback() { |
74 | 74 | |
75 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
76 | - wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'default' ) ); |
|
75 | + if ( ! current_user_can('manage_options')) { |
|
76 | + wp_die(esc_html__('You do not have sufficient permissions to access this page.', 'default')); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | echo '<div class="wrap">'; |
@@ -18,50 +18,50 @@ |
||
18 | 18 | */ |
19 | 19 | class Wordlift_Admin_Settings_Page_Action_Link { |
20 | 20 | |
21 | - /** |
|
22 | - * The {@link Wordlift_Admin_Settings_Page} instance. |
|
23 | - * |
|
24 | - * @since 3.11.0 |
|
25 | - * @access private |
|
26 | - * @var Wordlift_Admin_Settings_Page $settings_page The {@link Wordlift_Admin_Settings_Page} instance. |
|
27 | - */ |
|
28 | - private $settings_page; |
|
21 | + /** |
|
22 | + * The {@link Wordlift_Admin_Settings_Page} instance. |
|
23 | + * |
|
24 | + * @since 3.11.0 |
|
25 | + * @access private |
|
26 | + * @var Wordlift_Admin_Settings_Page $settings_page The {@link Wordlift_Admin_Settings_Page} instance. |
|
27 | + */ |
|
28 | + private $settings_page; |
|
29 | 29 | |
30 | - /** |
|
31 | - * Create a {@link Wordlift_Admin_Settings_Page_Action_Link} instance. |
|
32 | - * |
|
33 | - * @param Wordlift_Admin_Settings_Page $settings_page The {@link Wordlift_Admin_Settings_Page} instance. |
|
34 | - * |
|
35 | - * @since 3.11.0 |
|
36 | - */ |
|
37 | - public function __construct( $settings_page ) { |
|
30 | + /** |
|
31 | + * Create a {@link Wordlift_Admin_Settings_Page_Action_Link} instance. |
|
32 | + * |
|
33 | + * @param Wordlift_Admin_Settings_Page $settings_page The {@link Wordlift_Admin_Settings_Page} instance. |
|
34 | + * |
|
35 | + * @since 3.11.0 |
|
36 | + */ |
|
37 | + public function __construct( $settings_page ) { |
|
38 | 38 | |
39 | - $this->settings_page = $settings_page; |
|
39 | + $this->settings_page = $settings_page; |
|
40 | 40 | |
41 | - } |
|
41 | + } |
|
42 | 42 | |
43 | - /** |
|
44 | - * Create a link to the WordLift settings page. |
|
45 | - * |
|
46 | - * @param array $links An array of links. |
|
47 | - * |
|
48 | - * @return array An array of links including those added by the plugin. |
|
49 | - * @since 3.11.0 |
|
50 | - */ |
|
51 | - public function action_links( $links ) { |
|
43 | + /** |
|
44 | + * Create a link to the WordLift settings page. |
|
45 | + * |
|
46 | + * @param array $links An array of links. |
|
47 | + * |
|
48 | + * @return array An array of links including those added by the plugin. |
|
49 | + * @since 3.11.0 |
|
50 | + */ |
|
51 | + public function action_links( $links ) { |
|
52 | 52 | |
53 | - // Get the menu slug from the page, then prepare the path, hence the url. |
|
54 | - $menu_slug = $this->settings_page->get_menu_slug(); |
|
55 | - $path = "admin.php?page=$menu_slug"; |
|
56 | - $url = get_admin_url( null, $path ); |
|
53 | + // Get the menu slug from the page, then prepare the path, hence the url. |
|
54 | + $menu_slug = $this->settings_page->get_menu_slug(); |
|
55 | + $path = "admin.php?page=$menu_slug"; |
|
56 | + $url = get_admin_url( null, $path ); |
|
57 | 57 | |
58 | - // Add our own link to the list of links. |
|
59 | - return array_merge( |
|
60 | - $links, |
|
61 | - array( |
|
62 | - sprintf( "<a href='$url'>%s</a>", __( 'Settings', 'wordlift' ) ), |
|
63 | - ) |
|
64 | - ); |
|
65 | - } |
|
58 | + // Add our own link to the list of links. |
|
59 | + return array_merge( |
|
60 | + $links, |
|
61 | + array( |
|
62 | + sprintf( "<a href='$url'>%s</a>", __( 'Settings', 'wordlift' ) ), |
|
63 | + ) |
|
64 | + ); |
|
65 | + } |
|
66 | 66 | |
67 | 67 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | * |
35 | 35 | * @since 3.11.0 |
36 | 36 | */ |
37 | - public function __construct( $settings_page ) { |
|
37 | + public function __construct($settings_page) { |
|
38 | 38 | |
39 | 39 | $this->settings_page = $settings_page; |
40 | 40 | |
@@ -48,18 +48,18 @@ discard block |
||
48 | 48 | * @return array An array of links including those added by the plugin. |
49 | 49 | * @since 3.11.0 |
50 | 50 | */ |
51 | - public function action_links( $links ) { |
|
51 | + public function action_links($links) { |
|
52 | 52 | |
53 | 53 | // Get the menu slug from the page, then prepare the path, hence the url. |
54 | 54 | $menu_slug = $this->settings_page->get_menu_slug(); |
55 | 55 | $path = "admin.php?page=$menu_slug"; |
56 | - $url = get_admin_url( null, $path ); |
|
56 | + $url = get_admin_url(null, $path); |
|
57 | 57 | |
58 | 58 | // Add our own link to the list of links. |
59 | 59 | return array_merge( |
60 | 60 | $links, |
61 | 61 | array( |
62 | - sprintf( "<a href='$url'>%s</a>", __( 'Settings', 'wordlift' ) ), |
|
62 | + sprintf("<a href='$url'>%s</a>", __('Settings', 'wordlift')), |
|
63 | 63 | ) |
64 | 64 | ); |
65 | 65 | } |
@@ -20,163 +20,163 @@ |
||
20 | 20 | */ |
21 | 21 | class Wordlift_Dashboard_Latest_News { |
22 | 22 | |
23 | - /** |
|
24 | - * Add needed hooks for the latest news widget. |
|
25 | - */ |
|
26 | - public function __construct() { |
|
27 | - add_action( |
|
28 | - 'wp_ajax_wordlift_get_latest_news', |
|
29 | - array( |
|
30 | - $this, |
|
31 | - 'ajax_get_latest_news', |
|
32 | - ) |
|
33 | - ); |
|
34 | - add_action( |
|
35 | - 'wp_dashboard_setup', |
|
36 | - array( |
|
37 | - $this, |
|
38 | - 'add_dashboard_latest_news_widget', |
|
39 | - ) |
|
40 | - ); |
|
41 | - |
|
42 | - } |
|
43 | - |
|
44 | - /** |
|
45 | - * Return latest news html. |
|
46 | - */ |
|
47 | - public function render() { |
|
48 | - |
|
49 | - wp_enqueue_script( 'wl-admin-dashboard', plugin_dir_url( __DIR__ ) . 'admin/js/wordlift-admin-dashboard.js', array( 'jquery' ), '3.22.0', true ); |
|
50 | - |
|
51 | - include plugin_dir_path( __FILE__ ) . 'partials/wordlift-admin-news-widget.php'; |
|
52 | - } |
|
53 | - |
|
54 | - /** |
|
55 | - * Returns latest news data filtered by $start_position. |
|
56 | - * |
|
57 | - * @param int $start_position (news array key start position). |
|
58 | - * |
|
59 | - * @return array Latest posts data. |
|
60 | - */ |
|
61 | - public function get_last_wordlift_articles( $start_position = 0 ) { |
|
62 | - $feed_articles = $this->get_wordlift_articles_data(); |
|
63 | - |
|
64 | - // Filter articles by $start_position |
|
65 | - if ( ! empty( $feed_articles ) ) { |
|
66 | - return array( |
|
67 | - 'posts_data' => array_slice( $feed_articles, $start_position, 3 ), |
|
68 | - 'count' => count( $feed_articles ), |
|
69 | - 'start_position' => $start_position, |
|
70 | - ); |
|
71 | - } |
|
72 | - |
|
73 | - return false; |
|
74 | - } |
|
75 | - |
|
76 | - /** |
|
77 | - * Returns latest news array data. |
|
78 | - * |
|
79 | - * @uses https://codex.wordpress.org/Function_Reference/fetch_feed |
|
80 | - * @uses https://codex.wordpress.org/Function_Reference/get_locale |
|
81 | - * |
|
82 | - * @param int $articles_number (articles total number). |
|
83 | - * |
|
84 | - * @return array Latest $articles_number feed posts. |
|
85 | - */ |
|
86 | - public function get_wordlift_articles_data( $articles_number = 10 ) { |
|
87 | - // Init cache class |
|
88 | - $cache_sistem_lib = new Wordlift_File_Cache_Service( WL_TEMP_DIR . 'articles/' ); |
|
89 | - $locale = get_locale(); |
|
90 | - $cache_id = 'news_' . gmdate( 'Y_m_d' ) . '_' . $locale; |
|
91 | - $posts_data = array(); |
|
92 | - |
|
93 | - // Get latest articles from cache |
|
94 | - $feed_articles = $cache_sistem_lib->get_cache( $cache_id ); |
|
95 | - if ( false === $feed_articles ) { |
|
96 | - // Check WordPress installation language to define articles rss url |
|
97 | - $feed_uri = ( 'it_IT' === $locale ) ? 'https://wordlift.io/blog/it/feed/' : 'https://wordlift.io/blog/en/feed/'; |
|
98 | - |
|
99 | - // Get rss feed data, the response is cached by default for 12 hours |
|
100 | - $feed = fetch_feed( $feed_uri ); |
|
101 | - if ( ! is_wp_error( $feed ) ) { |
|
102 | - // Build an array of requested $articles_number, starting with element 0 |
|
103 | - $feed_articles = $feed->get_items( 0, $articles_number ); |
|
104 | - // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
105 | - foreach ( $feed_articles as $key => $item ) { |
|
106 | - $data = array( |
|
107 | - // fetch_feed will return the title html decoded. |
|
108 | - 'post_title' => $item->get_title(), |
|
109 | - 'post_date' => $item->get_date( 'j F Y | g:i a' ), |
|
110 | - 'post_url' => self::add_utm_parameter( $item->get_permalink() ), |
|
111 | - // fetch_feed will return the description html (not decoded). |
|
112 | - 'post_description' => $item->get_description(), |
|
113 | - ); |
|
114 | - array_push( $posts_data, $data ); |
|
115 | - } |
|
116 | - // Set articles in cache. |
|
117 | - $cache_sistem_lib->set_cache( $cache_id, $posts_data ); |
|
118 | - $feed_articles = $posts_data; |
|
119 | - } |
|
120 | - } |
|
121 | - |
|
122 | - return $feed_articles; |
|
123 | - } |
|
124 | - |
|
125 | - /** |
|
126 | - * Add the `utm` parameter for GA. |
|
127 | - * |
|
128 | - * @param string $url The URL. |
|
129 | - * |
|
130 | - * @return string The URL with the `utm` parameter prepended by `&` or by `?`. |
|
131 | - * @since 3.19.0 |
|
132 | - */ |
|
133 | - private static function add_utm_parameter( $url ) { |
|
134 | - |
|
135 | - if ( false === strpos( $url, '?' ) ) { |
|
136 | - return $url . '?utm=wl_dash'; |
|
137 | - } |
|
138 | - |
|
139 | - return $url . '&utm=wl_dash'; |
|
140 | - } |
|
141 | - |
|
142 | - /** |
|
143 | - * Ajax call for more latest news. |
|
144 | - * |
|
145 | - * @uses https://codex.wordpress.org/Function_Reference/wp_send_json_success |
|
146 | - */ |
|
147 | - public function ajax_get_latest_news() { |
|
148 | - // Get wordlift articles |
|
149 | - $more_posts_link_id = isset( $_POST['more_posts_link_id'] ) ? sanitize_text_field( wp_unslash( (string) $_POST['more_posts_link_id'] ) ) : '';//phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
150 | - $start_position = explode( '_', $more_posts_link_id ); |
|
151 | - $data = $this->get_last_wordlift_articles( $start_position[ count( $start_position ) - 1 ] ); |
|
152 | - |
|
153 | - // Return response as json object |
|
154 | - wp_send_json_success( $data ); |
|
155 | - } |
|
156 | - |
|
157 | - /** |
|
158 | - * Add latest news widget to the administration dashboard. |
|
159 | - */ |
|
160 | - public function add_dashboard_latest_news_widget() { |
|
161 | - |
|
162 | - /** |
|
163 | - * Filter name: wl_feature__enable__wordlift-news |
|
164 | - * Feature flag to enable / disable news widget. |
|
165 | - * |
|
166 | - * @since 3.30.0 |
|
167 | - */ |
|
168 | - // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
169 | - if ( apply_filters( 'wl_feature__enable__wordlift-news', true ) ) { |
|
170 | - |
|
171 | - wp_add_dashboard_widget( |
|
172 | - 'wordlift-dashboard-latest-news-widget', |
|
173 | - 'Latest WordLift News', |
|
174 | - array( |
|
175 | - $this, |
|
176 | - 'render', |
|
177 | - ) |
|
178 | - ); |
|
179 | - } |
|
180 | - } |
|
23 | + /** |
|
24 | + * Add needed hooks for the latest news widget. |
|
25 | + */ |
|
26 | + public function __construct() { |
|
27 | + add_action( |
|
28 | + 'wp_ajax_wordlift_get_latest_news', |
|
29 | + array( |
|
30 | + $this, |
|
31 | + 'ajax_get_latest_news', |
|
32 | + ) |
|
33 | + ); |
|
34 | + add_action( |
|
35 | + 'wp_dashboard_setup', |
|
36 | + array( |
|
37 | + $this, |
|
38 | + 'add_dashboard_latest_news_widget', |
|
39 | + ) |
|
40 | + ); |
|
41 | + |
|
42 | + } |
|
43 | + |
|
44 | + /** |
|
45 | + * Return latest news html. |
|
46 | + */ |
|
47 | + public function render() { |
|
48 | + |
|
49 | + wp_enqueue_script( 'wl-admin-dashboard', plugin_dir_url( __DIR__ ) . 'admin/js/wordlift-admin-dashboard.js', array( 'jquery' ), '3.22.0', true ); |
|
50 | + |
|
51 | + include plugin_dir_path( __FILE__ ) . 'partials/wordlift-admin-news-widget.php'; |
|
52 | + } |
|
53 | + |
|
54 | + /** |
|
55 | + * Returns latest news data filtered by $start_position. |
|
56 | + * |
|
57 | + * @param int $start_position (news array key start position). |
|
58 | + * |
|
59 | + * @return array Latest posts data. |
|
60 | + */ |
|
61 | + public function get_last_wordlift_articles( $start_position = 0 ) { |
|
62 | + $feed_articles = $this->get_wordlift_articles_data(); |
|
63 | + |
|
64 | + // Filter articles by $start_position |
|
65 | + if ( ! empty( $feed_articles ) ) { |
|
66 | + return array( |
|
67 | + 'posts_data' => array_slice( $feed_articles, $start_position, 3 ), |
|
68 | + 'count' => count( $feed_articles ), |
|
69 | + 'start_position' => $start_position, |
|
70 | + ); |
|
71 | + } |
|
72 | + |
|
73 | + return false; |
|
74 | + } |
|
75 | + |
|
76 | + /** |
|
77 | + * Returns latest news array data. |
|
78 | + * |
|
79 | + * @uses https://codex.wordpress.org/Function_Reference/fetch_feed |
|
80 | + * @uses https://codex.wordpress.org/Function_Reference/get_locale |
|
81 | + * |
|
82 | + * @param int $articles_number (articles total number). |
|
83 | + * |
|
84 | + * @return array Latest $articles_number feed posts. |
|
85 | + */ |
|
86 | + public function get_wordlift_articles_data( $articles_number = 10 ) { |
|
87 | + // Init cache class |
|
88 | + $cache_sistem_lib = new Wordlift_File_Cache_Service( WL_TEMP_DIR . 'articles/' ); |
|
89 | + $locale = get_locale(); |
|
90 | + $cache_id = 'news_' . gmdate( 'Y_m_d' ) . '_' . $locale; |
|
91 | + $posts_data = array(); |
|
92 | + |
|
93 | + // Get latest articles from cache |
|
94 | + $feed_articles = $cache_sistem_lib->get_cache( $cache_id ); |
|
95 | + if ( false === $feed_articles ) { |
|
96 | + // Check WordPress installation language to define articles rss url |
|
97 | + $feed_uri = ( 'it_IT' === $locale ) ? 'https://wordlift.io/blog/it/feed/' : 'https://wordlift.io/blog/en/feed/'; |
|
98 | + |
|
99 | + // Get rss feed data, the response is cached by default for 12 hours |
|
100 | + $feed = fetch_feed( $feed_uri ); |
|
101 | + if ( ! is_wp_error( $feed ) ) { |
|
102 | + // Build an array of requested $articles_number, starting with element 0 |
|
103 | + $feed_articles = $feed->get_items( 0, $articles_number ); |
|
104 | + // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
105 | + foreach ( $feed_articles as $key => $item ) { |
|
106 | + $data = array( |
|
107 | + // fetch_feed will return the title html decoded. |
|
108 | + 'post_title' => $item->get_title(), |
|
109 | + 'post_date' => $item->get_date( 'j F Y | g:i a' ), |
|
110 | + 'post_url' => self::add_utm_parameter( $item->get_permalink() ), |
|
111 | + // fetch_feed will return the description html (not decoded). |
|
112 | + 'post_description' => $item->get_description(), |
|
113 | + ); |
|
114 | + array_push( $posts_data, $data ); |
|
115 | + } |
|
116 | + // Set articles in cache. |
|
117 | + $cache_sistem_lib->set_cache( $cache_id, $posts_data ); |
|
118 | + $feed_articles = $posts_data; |
|
119 | + } |
|
120 | + } |
|
121 | + |
|
122 | + return $feed_articles; |
|
123 | + } |
|
124 | + |
|
125 | + /** |
|
126 | + * Add the `utm` parameter for GA. |
|
127 | + * |
|
128 | + * @param string $url The URL. |
|
129 | + * |
|
130 | + * @return string The URL with the `utm` parameter prepended by `&` or by `?`. |
|
131 | + * @since 3.19.0 |
|
132 | + */ |
|
133 | + private static function add_utm_parameter( $url ) { |
|
134 | + |
|
135 | + if ( false === strpos( $url, '?' ) ) { |
|
136 | + return $url . '?utm=wl_dash'; |
|
137 | + } |
|
138 | + |
|
139 | + return $url . '&utm=wl_dash'; |
|
140 | + } |
|
141 | + |
|
142 | + /** |
|
143 | + * Ajax call for more latest news. |
|
144 | + * |
|
145 | + * @uses https://codex.wordpress.org/Function_Reference/wp_send_json_success |
|
146 | + */ |
|
147 | + public function ajax_get_latest_news() { |
|
148 | + // Get wordlift articles |
|
149 | + $more_posts_link_id = isset( $_POST['more_posts_link_id'] ) ? sanitize_text_field( wp_unslash( (string) $_POST['more_posts_link_id'] ) ) : '';//phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
150 | + $start_position = explode( '_', $more_posts_link_id ); |
|
151 | + $data = $this->get_last_wordlift_articles( $start_position[ count( $start_position ) - 1 ] ); |
|
152 | + |
|
153 | + // Return response as json object |
|
154 | + wp_send_json_success( $data ); |
|
155 | + } |
|
156 | + |
|
157 | + /** |
|
158 | + * Add latest news widget to the administration dashboard. |
|
159 | + */ |
|
160 | + public function add_dashboard_latest_news_widget() { |
|
161 | + |
|
162 | + /** |
|
163 | + * Filter name: wl_feature__enable__wordlift-news |
|
164 | + * Feature flag to enable / disable news widget. |
|
165 | + * |
|
166 | + * @since 3.30.0 |
|
167 | + */ |
|
168 | + // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
169 | + if ( apply_filters( 'wl_feature__enable__wordlift-news', true ) ) { |
|
170 | + |
|
171 | + wp_add_dashboard_widget( |
|
172 | + 'wordlift-dashboard-latest-news-widget', |
|
173 | + 'Latest WordLift News', |
|
174 | + array( |
|
175 | + $this, |
|
176 | + 'render', |
|
177 | + ) |
|
178 | + ); |
|
179 | + } |
|
180 | + } |
|
181 | 181 | |
182 | 182 | } |
@@ -46,9 +46,9 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function render() { |
48 | 48 | |
49 | - wp_enqueue_script( 'wl-admin-dashboard', plugin_dir_url( __DIR__ ) . 'admin/js/wordlift-admin-dashboard.js', array( 'jquery' ), '3.22.0', true ); |
|
49 | + wp_enqueue_script('wl-admin-dashboard', plugin_dir_url(__DIR__).'admin/js/wordlift-admin-dashboard.js', array('jquery'), '3.22.0', true); |
|
50 | 50 | |
51 | - include plugin_dir_path( __FILE__ ) . 'partials/wordlift-admin-news-widget.php'; |
|
51 | + include plugin_dir_path(__FILE__).'partials/wordlift-admin-news-widget.php'; |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -58,14 +58,14 @@ discard block |
||
58 | 58 | * |
59 | 59 | * @return array Latest posts data. |
60 | 60 | */ |
61 | - public function get_last_wordlift_articles( $start_position = 0 ) { |
|
61 | + public function get_last_wordlift_articles($start_position = 0) { |
|
62 | 62 | $feed_articles = $this->get_wordlift_articles_data(); |
63 | 63 | |
64 | 64 | // Filter articles by $start_position |
65 | - if ( ! empty( $feed_articles ) ) { |
|
65 | + if ( ! empty($feed_articles)) { |
|
66 | 66 | return array( |
67 | - 'posts_data' => array_slice( $feed_articles, $start_position, 3 ), |
|
68 | - 'count' => count( $feed_articles ), |
|
67 | + 'posts_data' => array_slice($feed_articles, $start_position, 3), |
|
68 | + 'count' => count($feed_articles), |
|
69 | 69 | 'start_position' => $start_position, |
70 | 70 | ); |
71 | 71 | } |
@@ -83,38 +83,38 @@ discard block |
||
83 | 83 | * |
84 | 84 | * @return array Latest $articles_number feed posts. |
85 | 85 | */ |
86 | - public function get_wordlift_articles_data( $articles_number = 10 ) { |
|
86 | + public function get_wordlift_articles_data($articles_number = 10) { |
|
87 | 87 | // Init cache class |
88 | - $cache_sistem_lib = new Wordlift_File_Cache_Service( WL_TEMP_DIR . 'articles/' ); |
|
88 | + $cache_sistem_lib = new Wordlift_File_Cache_Service(WL_TEMP_DIR.'articles/'); |
|
89 | 89 | $locale = get_locale(); |
90 | - $cache_id = 'news_' . gmdate( 'Y_m_d' ) . '_' . $locale; |
|
90 | + $cache_id = 'news_'.gmdate('Y_m_d').'_'.$locale; |
|
91 | 91 | $posts_data = array(); |
92 | 92 | |
93 | 93 | // Get latest articles from cache |
94 | - $feed_articles = $cache_sistem_lib->get_cache( $cache_id ); |
|
95 | - if ( false === $feed_articles ) { |
|
94 | + $feed_articles = $cache_sistem_lib->get_cache($cache_id); |
|
95 | + if (false === $feed_articles) { |
|
96 | 96 | // Check WordPress installation language to define articles rss url |
97 | - $feed_uri = ( 'it_IT' === $locale ) ? 'https://wordlift.io/blog/it/feed/' : 'https://wordlift.io/blog/en/feed/'; |
|
97 | + $feed_uri = ('it_IT' === $locale) ? 'https://wordlift.io/blog/it/feed/' : 'https://wordlift.io/blog/en/feed/'; |
|
98 | 98 | |
99 | 99 | // Get rss feed data, the response is cached by default for 12 hours |
100 | - $feed = fetch_feed( $feed_uri ); |
|
101 | - if ( ! is_wp_error( $feed ) ) { |
|
100 | + $feed = fetch_feed($feed_uri); |
|
101 | + if ( ! is_wp_error($feed)) { |
|
102 | 102 | // Build an array of requested $articles_number, starting with element 0 |
103 | - $feed_articles = $feed->get_items( 0, $articles_number ); |
|
103 | + $feed_articles = $feed->get_items(0, $articles_number); |
|
104 | 104 | // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
105 | - foreach ( $feed_articles as $key => $item ) { |
|
105 | + foreach ($feed_articles as $key => $item) { |
|
106 | 106 | $data = array( |
107 | 107 | // fetch_feed will return the title html decoded. |
108 | 108 | 'post_title' => $item->get_title(), |
109 | - 'post_date' => $item->get_date( 'j F Y | g:i a' ), |
|
110 | - 'post_url' => self::add_utm_parameter( $item->get_permalink() ), |
|
109 | + 'post_date' => $item->get_date('j F Y | g:i a'), |
|
110 | + 'post_url' => self::add_utm_parameter($item->get_permalink()), |
|
111 | 111 | // fetch_feed will return the description html (not decoded). |
112 | 112 | 'post_description' => $item->get_description(), |
113 | 113 | ); |
114 | - array_push( $posts_data, $data ); |
|
114 | + array_push($posts_data, $data); |
|
115 | 115 | } |
116 | 116 | // Set articles in cache. |
117 | - $cache_sistem_lib->set_cache( $cache_id, $posts_data ); |
|
117 | + $cache_sistem_lib->set_cache($cache_id, $posts_data); |
|
118 | 118 | $feed_articles = $posts_data; |
119 | 119 | } |
120 | 120 | } |
@@ -130,13 +130,13 @@ discard block |
||
130 | 130 | * @return string The URL with the `utm` parameter prepended by `&` or by `?`. |
131 | 131 | * @since 3.19.0 |
132 | 132 | */ |
133 | - private static function add_utm_parameter( $url ) { |
|
133 | + private static function add_utm_parameter($url) { |
|
134 | 134 | |
135 | - if ( false === strpos( $url, '?' ) ) { |
|
136 | - return $url . '?utm=wl_dash'; |
|
135 | + if (false === strpos($url, '?')) { |
|
136 | + return $url.'?utm=wl_dash'; |
|
137 | 137 | } |
138 | 138 | |
139 | - return $url . '&utm=wl_dash'; |
|
139 | + return $url.'&utm=wl_dash'; |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | /** |
@@ -146,12 +146,12 @@ discard block |
||
146 | 146 | */ |
147 | 147 | public function ajax_get_latest_news() { |
148 | 148 | // Get wordlift articles |
149 | - $more_posts_link_id = isset( $_POST['more_posts_link_id'] ) ? sanitize_text_field( wp_unslash( (string) $_POST['more_posts_link_id'] ) ) : '';//phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
150 | - $start_position = explode( '_', $more_posts_link_id ); |
|
151 | - $data = $this->get_last_wordlift_articles( $start_position[ count( $start_position ) - 1 ] ); |
|
149 | + $more_posts_link_id = isset($_POST['more_posts_link_id']) ? sanitize_text_field(wp_unslash((string) $_POST['more_posts_link_id'])) : ''; //phpcs:ignore WordPress.Security.NonceVerification.Missing |
|
150 | + $start_position = explode('_', $more_posts_link_id); |
|
151 | + $data = $this->get_last_wordlift_articles($start_position[count($start_position) - 1]); |
|
152 | 152 | |
153 | 153 | // Return response as json object |
154 | - wp_send_json_success( $data ); |
|
154 | + wp_send_json_success($data); |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | /** |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | * @since 3.30.0 |
167 | 167 | */ |
168 | 168 | // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
169 | - if ( apply_filters( 'wl_feature__enable__wordlift-news', true ) ) { |
|
169 | + if (apply_filters('wl_feature__enable__wordlift-news', true)) { |
|
170 | 170 | |
171 | 171 | wp_add_dashboard_widget( |
172 | 172 | 'wordlift-dashboard-latest-news-widget', |
@@ -9,11 +9,11 @@ discard block |
||
9 | 9 | * Loads the buttons in TinyMCE. |
10 | 10 | */ |
11 | 11 | function wl_admin_shortcode_buttons() { |
12 | - // Only add hooks when the current user has permissions AND is in Rich Text editor mode |
|
13 | - if ( ( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ) ) && get_user_option( 'rich_editing' ) ) { |
|
14 | - // add_filter( 'mce_external_plugins', 'wl_admin_shortcode_buttons_register_tinymce_javascript' ); |
|
15 | - add_filter( 'mce_buttons', 'wl_admin_shortcode_register_buttons' ); |
|
16 | - } |
|
12 | + // Only add hooks when the current user has permissions AND is in Rich Text editor mode |
|
13 | + if ( ( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ) ) && get_user_option( 'rich_editing' ) ) { |
|
14 | + // add_filter( 'mce_external_plugins', 'wl_admin_shortcode_buttons_register_tinymce_javascript' ); |
|
15 | + add_filter( 'mce_buttons', 'wl_admin_shortcode_register_buttons' ); |
|
16 | + } |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | /** |
@@ -24,9 +24,9 @@ discard block |
||
24 | 24 | * @return array The buttons array including the *wl_shortcodes_menu*. |
25 | 25 | */ |
26 | 26 | function wl_admin_shortcode_register_buttons( $buttons ) { |
27 | - array_push( $buttons, 'wl_shortcodes_menu' ); |
|
27 | + array_push( $buttons, 'wl_shortcodes_menu' ); |
|
28 | 28 | |
29 | - return $buttons; |
|
29 | + return $buttons; |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | // init process for button control |
@@ -10,9 +10,9 @@ discard block |
||
10 | 10 | */ |
11 | 11 | function wl_admin_shortcode_buttons() { |
12 | 12 | // Only add hooks when the current user has permissions AND is in Rich Text editor mode |
13 | - if ( ( current_user_can( 'edit_posts' ) || current_user_can( 'edit_pages' ) ) && get_user_option( 'rich_editing' ) ) { |
|
13 | + if ((current_user_can('edit_posts') || current_user_can('edit_pages')) && get_user_option('rich_editing')) { |
|
14 | 14 | // add_filter( 'mce_external_plugins', 'wl_admin_shortcode_buttons_register_tinymce_javascript' ); |
15 | - add_filter( 'mce_buttons', 'wl_admin_shortcode_register_buttons' ); |
|
15 | + add_filter('mce_buttons', 'wl_admin_shortcode_register_buttons'); |
|
16 | 16 | } |
17 | 17 | } |
18 | 18 | |
@@ -23,11 +23,11 @@ discard block |
||
23 | 23 | * |
24 | 24 | * @return array The buttons array including the *wl_shortcodes_menu*. |
25 | 25 | */ |
26 | -function wl_admin_shortcode_register_buttons( $buttons ) { |
|
27 | - array_push( $buttons, 'wl_shortcodes_menu' ); |
|
26 | +function wl_admin_shortcode_register_buttons($buttons) { |
|
27 | + array_push($buttons, 'wl_shortcodes_menu'); |
|
28 | 28 | |
29 | 29 | return $buttons; |
30 | 30 | } |
31 | 31 | |
32 | 32 | // init process for button control |
33 | -add_action( 'admin_init', 'wl_admin_shortcode_buttons' ); |
|
33 | +add_action('admin_init', 'wl_admin_shortcode_buttons'); |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * |
47 | 47 | * @since 3.14.0 |
48 | 48 | */ |
49 | - public function __construct( $author_element, $user_service ) { |
|
49 | + public function __construct($author_element, $user_service) { |
|
50 | 50 | |
51 | 51 | $this->author_element = $author_element; |
52 | 52 | $this->user_service = $user_service; |
@@ -57,8 +57,8 @@ discard block |
||
57 | 57 | * It is too early in the WordPress boot to do user capabilities filtering |
58 | 58 | * here and it is deferred to the handler. |
59 | 59 | */ |
60 | - add_action( 'show_user_profile', array( $this, 'edit_user_profile' ) ); |
|
61 | - add_action( 'edit_user_profile', array( $this, 'edit_user_profile' ) ); |
|
60 | + add_action('show_user_profile', array($this, 'edit_user_profile')); |
|
61 | + add_action('edit_user_profile', array($this, 'edit_user_profile')); |
|
62 | 62 | add_action( |
63 | 63 | 'edit_user_profile_update', |
64 | 64 | array( |
@@ -84,25 +84,25 @@ discard block |
||
84 | 84 | * |
85 | 85 | * @since 3.14.0 |
86 | 86 | */ |
87 | - public function edit_user_profile( $user ) { |
|
87 | + public function edit_user_profile($user) { |
|
88 | 88 | |
89 | 89 | // In case it is a user editing his own profile, make sure he has admin |
90 | 90 | // like capabilities. |
91 | - if ( ! current_user_can( 'edit_users' ) ) { |
|
91 | + if ( ! current_user_can('edit_users')) { |
|
92 | 92 | return; |
93 | 93 | } |
94 | 94 | |
95 | 95 | ?> |
96 | - <h2><?php esc_html_e( 'WordLift', 'wordlift' ); ?></h2> |
|
97 | - <?php wp_nonce_field( 'wordlift_user_save', 'wordlift_user_save_nonce', false ); ?> |
|
96 | + <h2><?php esc_html_e('WordLift', 'wordlift'); ?></h2> |
|
97 | + <?php wp_nonce_field('wordlift_user_save', 'wordlift_user_save_nonce', false); ?> |
|
98 | 98 | <table class="form-table"> |
99 | 99 | <?php |
100 | 100 | // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
101 | - if ( apply_filters( 'wl_feature__enable__user-author', true ) ) { |
|
101 | + if (apply_filters('wl_feature__enable__user-author', true)) { |
|
102 | 102 | ?> |
103 | 103 | <tr class="user-description-wrap"> |
104 | 104 | <th><label |
105 | - for="wl_person"><?php esc_html_e( 'Author from the vocabulary', 'wordlift' ); ?></label> |
|
105 | + for="wl_person"><?php esc_html_e('Author from the vocabulary', 'wordlift'); ?></label> |
|
106 | 106 | </th> |
107 | 107 | <td> |
108 | 108 | <?php |
@@ -110,24 +110,24 @@ discard block |
||
110 | 110 | array( |
111 | 111 | 'id' => 'wl_person', |
112 | 112 | 'name' => 'wl_person', |
113 | - 'current_entity' => $this->user_service->get_entity( $user->ID ), |
|
113 | + 'current_entity' => $this->user_service->get_entity($user->ID), |
|
114 | 114 | ) |
115 | 115 | ); |
116 | 116 | ?> |
117 | - <p class="description"><?php esc_html_e( 'The entity, person or organization, from the vocabulary to associate with this author.', 'wordlift' ); ?></p> |
|
117 | + <p class="description"><?php esc_html_e('The entity, person or organization, from the vocabulary to associate with this author.', 'wordlift'); ?></p> |
|
118 | 118 | </td> |
119 | 119 | </tr> |
120 | 120 | <?php } ?> |
121 | - <?php if ( $this->user_service->is_editor( $user->ID ) ) { ?> |
|
121 | + <?php if ($this->user_service->is_editor($user->ID)) { ?> |
|
122 | 122 | <tr> |
123 | 123 | <th> |
124 | 124 | <label |
125 | - for="wl_can_create_entities"><?php esc_html_e( 'Can create new entities', 'wordlift' ); ?></label> |
|
125 | + for="wl_can_create_entities"><?php esc_html_e('Can create new entities', 'wordlift'); ?></label> |
|
126 | 126 | </th> |
127 | 127 | <td> |
128 | 128 | <input id="wl_can_create_entities" |
129 | 129 | name="wl_can_create_entities" |
130 | - type="checkbox" <?php checked( $this->user_service->editor_can_create_entities( $user->ID ) ); ?> |
|
130 | + type="checkbox" <?php checked($this->user_service->editor_can_create_entities($user->ID)); ?> |
|
131 | 131 | </td> |
132 | 132 | <?php } ?> |
133 | 133 | <?php |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | * |
138 | 138 | * @since 3.30.0 |
139 | 139 | */ |
140 | - do_action( 'wordlift_user_settings_page' ); |
|
140 | + do_action('wordlift_user_settings_page'); |
|
141 | 141 | ?> |
142 | 142 | </table> |
143 | 143 | <?php |
@@ -150,25 +150,25 @@ discard block |
||
150 | 150 | * |
151 | 151 | * @since 3.14.0 |
152 | 152 | */ |
153 | - public function edit_user_profile_update( $user_id ) { |
|
153 | + public function edit_user_profile_update($user_id) { |
|
154 | 154 | |
155 | 155 | // In case it is a user editing his own profile, make sure he has admin |
156 | 156 | // like capabilities. |
157 | - if ( ! current_user_can( 'edit_users' ) ) { |
|
157 | + if ( ! current_user_can('edit_users')) { |
|
158 | 158 | return; |
159 | 159 | } |
160 | 160 | |
161 | - check_admin_referer( 'wordlift_user_save', 'wordlift_user_save_nonce' ); |
|
161 | + check_admin_referer('wordlift_user_save', 'wordlift_user_save_nonce'); |
|
162 | 162 | |
163 | 163 | // Link an entity to the user. |
164 | - $this->link_entity( $user_id, $_POST ); |
|
164 | + $this->link_entity($user_id, $_POST); |
|
165 | 165 | |
166 | 166 | // Deny and enable the edit entity capability |
167 | - if ( isset( $_POST['wl_can_create_entities'] ) ) { |
|
167 | + if (isset($_POST['wl_can_create_entities'])) { |
|
168 | 168 | // User has capability so remove the deny indication if present. |
169 | - $this->user_service->allow_editor_entity_create( $user_id ); |
|
169 | + $this->user_service->allow_editor_entity_create($user_id); |
|
170 | 170 | } else { |
171 | - $this->user_service->deny_editor_entity_create( $user_id ); |
|
171 | + $this->user_service->deny_editor_entity_create($user_id); |
|
172 | 172 | } |
173 | 173 | |
174 | 174 | } |
@@ -182,14 +182,14 @@ discard block |
||
182 | 182 | * |
183 | 183 | * @since 3.14.0 |
184 | 184 | */ |
185 | - private function link_entity( $user_id, $post ) { |
|
185 | + private function link_entity($user_id, $post) { |
|
186 | 186 | |
187 | 187 | // Bail out if the `wl_person` parameter isn't set. |
188 | - if ( ! isset( $post['wl_person'] ) || ! is_numeric( $post['wl_person'] ) ) { |
|
188 | + if ( ! isset($post['wl_person']) || ! is_numeric($post['wl_person'])) { |
|
189 | 189 | return; |
190 | 190 | } |
191 | 191 | |
192 | - $this->user_service->set_entity( $user_id, intval( $post['wl_person'] ) ); |
|
192 | + $this->user_service->set_entity($user_id, intval($post['wl_person'])); |
|
193 | 193 | |
194 | 194 | } |
195 | 195 |
@@ -18,102 +18,102 @@ discard block |
||
18 | 18 | */ |
19 | 19 | class Wordlift_Admin_User_Profile_Page { |
20 | 20 | |
21 | - /** |
|
22 | - * The {@link Wordlift_Admin_Person_Element} instance. |
|
23 | - * |
|
24 | - * @since 3.14.0 |
|
25 | - * @access private |
|
26 | - * @var \Wordlift_Admin_Author_Element $plugin The person entity |
|
27 | - * selection element rendering the possible persons. |
|
28 | - */ |
|
29 | - private $author_element; |
|
30 | - |
|
31 | - /** |
|
32 | - * The {@link Wordlift_User_Service} instance. |
|
33 | - * |
|
34 | - * @since 3.14.0 |
|
35 | - * @access private |
|
36 | - * @var \Wordlift_User_Service $user_service The {@link Wordlift_User_Service} instance. |
|
37 | - */ |
|
38 | - private $user_service; |
|
39 | - |
|
40 | - /** |
|
41 | - * Create the {@link Wordlift_Admin_User_Profile_Page} instance. |
|
42 | - * |
|
43 | - * @param \Wordlift_Admin_Author_Element $author_element The person entity selection |
|
44 | - * element rendering the possible persons. |
|
45 | - * @param \Wordlift_User_Service $user_service The {@link Wordlift_User_Service} instance. |
|
46 | - * |
|
47 | - * @since 3.14.0 |
|
48 | - */ |
|
49 | - public function __construct( $author_element, $user_service ) { |
|
50 | - |
|
51 | - $this->author_element = $author_element; |
|
52 | - $this->user_service = $user_service; |
|
53 | - |
|
54 | - /* |
|
21 | + /** |
|
22 | + * The {@link Wordlift_Admin_Person_Element} instance. |
|
23 | + * |
|
24 | + * @since 3.14.0 |
|
25 | + * @access private |
|
26 | + * @var \Wordlift_Admin_Author_Element $plugin The person entity |
|
27 | + * selection element rendering the possible persons. |
|
28 | + */ |
|
29 | + private $author_element; |
|
30 | + |
|
31 | + /** |
|
32 | + * The {@link Wordlift_User_Service} instance. |
|
33 | + * |
|
34 | + * @since 3.14.0 |
|
35 | + * @access private |
|
36 | + * @var \Wordlift_User_Service $user_service The {@link Wordlift_User_Service} instance. |
|
37 | + */ |
|
38 | + private $user_service; |
|
39 | + |
|
40 | + /** |
|
41 | + * Create the {@link Wordlift_Admin_User_Profile_Page} instance. |
|
42 | + * |
|
43 | + * @param \Wordlift_Admin_Author_Element $author_element The person entity selection |
|
44 | + * element rendering the possible persons. |
|
45 | + * @param \Wordlift_User_Service $user_service The {@link Wordlift_User_Service} instance. |
|
46 | + * |
|
47 | + * @since 3.14.0 |
|
48 | + */ |
|
49 | + public function __construct( $author_element, $user_service ) { |
|
50 | + |
|
51 | + $this->author_element = $author_element; |
|
52 | + $this->user_service = $user_service; |
|
53 | + |
|
54 | + /* |
|
55 | 55 | * When an admin (or similar permissions) edits his own profile a |
56 | 56 | * different action than the usual is being triggered. |
57 | 57 | * It is too early in the WordPress boot to do user capabilities filtering |
58 | 58 | * here and it is deferred to the handler. |
59 | 59 | */ |
60 | - add_action( 'show_user_profile', array( $this, 'edit_user_profile' ) ); |
|
61 | - add_action( 'edit_user_profile', array( $this, 'edit_user_profile' ) ); |
|
62 | - add_action( |
|
63 | - 'edit_user_profile_update', |
|
64 | - array( |
|
65 | - $this, |
|
66 | - 'edit_user_profile_update', |
|
67 | - ) |
|
68 | - ); |
|
69 | - add_action( |
|
70 | - 'personal_options_update', |
|
71 | - array( |
|
72 | - $this, |
|
73 | - 'edit_user_profile_update', |
|
74 | - ) |
|
75 | - ); |
|
76 | - |
|
77 | - } |
|
78 | - |
|
79 | - /** |
|
80 | - * Add a WordLift section in the user profile which lets |
|
81 | - * the admin to associate a WordPress user with a person entity. |
|
82 | - * |
|
83 | - * @param WP_User $user The current WP_User object of the user being edited. |
|
84 | - * |
|
85 | - * @since 3.14.0 |
|
86 | - */ |
|
87 | - public function edit_user_profile( $user ) { |
|
88 | - |
|
89 | - // In case it is a user editing his own profile, make sure he has admin |
|
90 | - // like capabilities. |
|
91 | - if ( ! current_user_can( 'edit_users' ) ) { |
|
92 | - return; |
|
93 | - } |
|
94 | - |
|
95 | - ?> |
|
60 | + add_action( 'show_user_profile', array( $this, 'edit_user_profile' ) ); |
|
61 | + add_action( 'edit_user_profile', array( $this, 'edit_user_profile' ) ); |
|
62 | + add_action( |
|
63 | + 'edit_user_profile_update', |
|
64 | + array( |
|
65 | + $this, |
|
66 | + 'edit_user_profile_update', |
|
67 | + ) |
|
68 | + ); |
|
69 | + add_action( |
|
70 | + 'personal_options_update', |
|
71 | + array( |
|
72 | + $this, |
|
73 | + 'edit_user_profile_update', |
|
74 | + ) |
|
75 | + ); |
|
76 | + |
|
77 | + } |
|
78 | + |
|
79 | + /** |
|
80 | + * Add a WordLift section in the user profile which lets |
|
81 | + * the admin to associate a WordPress user with a person entity. |
|
82 | + * |
|
83 | + * @param WP_User $user The current WP_User object of the user being edited. |
|
84 | + * |
|
85 | + * @since 3.14.0 |
|
86 | + */ |
|
87 | + public function edit_user_profile( $user ) { |
|
88 | + |
|
89 | + // In case it is a user editing his own profile, make sure he has admin |
|
90 | + // like capabilities. |
|
91 | + if ( ! current_user_can( 'edit_users' ) ) { |
|
92 | + return; |
|
93 | + } |
|
94 | + |
|
95 | + ?> |
|
96 | 96 | <h2><?php esc_html_e( 'WordLift', 'wordlift' ); ?></h2> |
97 | 97 | <?php wp_nonce_field( 'wordlift_user_save', 'wordlift_user_save_nonce', false ); ?> |
98 | 98 | <table class="form-table"> |
99 | 99 | <?php |
100 | - // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
101 | - if ( apply_filters( 'wl_feature__enable__user-author', true ) ) { |
|
102 | - ?> |
|
100 | + // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
101 | + if ( apply_filters( 'wl_feature__enable__user-author', true ) ) { |
|
102 | + ?> |
|
103 | 103 | <tr class="user-description-wrap"> |
104 | 104 | <th><label |
105 | 105 | for="wl_person"><?php esc_html_e( 'Author from the vocabulary', 'wordlift' ); ?></label> |
106 | 106 | </th> |
107 | 107 | <td> |
108 | 108 | <?php |
109 | - $this->author_element->render( |
|
110 | - array( |
|
111 | - 'id' => 'wl_person', |
|
112 | - 'name' => 'wl_person', |
|
113 | - 'current_entity' => $this->user_service->get_entity( $user->ID ), |
|
114 | - ) |
|
115 | - ); |
|
116 | - ?> |
|
109 | + $this->author_element->render( |
|
110 | + array( |
|
111 | + 'id' => 'wl_person', |
|
112 | + 'name' => 'wl_person', |
|
113 | + 'current_entity' => $this->user_service->get_entity( $user->ID ), |
|
114 | + ) |
|
115 | + ); |
|
116 | + ?> |
|
117 | 117 | <p class="description"><?php esc_html_e( 'The entity, person or organization, from the vocabulary to associate with this author.', 'wordlift' ); ?></p> |
118 | 118 | </td> |
119 | 119 | </tr> |
@@ -131,66 +131,66 @@ discard block |
||
131 | 131 | </td> |
132 | 132 | <?php } ?> |
133 | 133 | <?php |
134 | - /** |
|
135 | - * Action name: wordlift_user_settings_page |
|
136 | - * An action to render the wordlift user settings. |
|
137 | - * |
|
138 | - * @since 3.30.0 |
|
139 | - */ |
|
140 | - do_action( 'wordlift_user_settings_page' ); |
|
141 | - ?> |
|
134 | + /** |
|
135 | + * Action name: wordlift_user_settings_page |
|
136 | + * An action to render the wordlift user settings. |
|
137 | + * |
|
138 | + * @since 3.30.0 |
|
139 | + */ |
|
140 | + do_action( 'wordlift_user_settings_page' ); |
|
141 | + ?> |
|
142 | 142 | </table> |
143 | 143 | <?php |
144 | - } |
|
145 | - |
|
146 | - /** |
|
147 | - * Handle storing the person entity associated with the user. |
|
148 | - * |
|
149 | - * @param int $user_id The user id of the user being saved. |
|
150 | - * |
|
151 | - * @since 3.14.0 |
|
152 | - */ |
|
153 | - public function edit_user_profile_update( $user_id ) { |
|
154 | - |
|
155 | - // In case it is a user editing his own profile, make sure he has admin |
|
156 | - // like capabilities. |
|
157 | - if ( ! current_user_can( 'edit_users' ) ) { |
|
158 | - return; |
|
159 | - } |
|
160 | - |
|
161 | - check_admin_referer( 'wordlift_user_save', 'wordlift_user_save_nonce' ); |
|
162 | - |
|
163 | - // Link an entity to the user. |
|
164 | - $this->link_entity( $user_id, $_POST ); |
|
165 | - |
|
166 | - // Deny and enable the edit entity capability |
|
167 | - if ( isset( $_POST['wl_can_create_entities'] ) ) { |
|
168 | - // User has capability so remove the deny indication if present. |
|
169 | - $this->user_service->allow_editor_entity_create( $user_id ); |
|
170 | - } else { |
|
171 | - $this->user_service->deny_editor_entity_create( $user_id ); |
|
172 | - } |
|
173 | - |
|
174 | - } |
|
175 | - |
|
176 | - /** |
|
177 | - * Link an entity (specified in the `$_POST` array) to the {@link WP_User} |
|
178 | - * with the specified `id`. |
|
179 | - * |
|
180 | - * @param int $user_id The {@link WP_User} `id`. |
|
181 | - * @param array $post The `$_POST` array. |
|
182 | - * |
|
183 | - * @since 3.14.0 |
|
184 | - */ |
|
185 | - private function link_entity( $user_id, $post ) { |
|
186 | - |
|
187 | - // Bail out if the `wl_person` parameter isn't set. |
|
188 | - if ( ! isset( $post['wl_person'] ) || ! is_numeric( $post['wl_person'] ) ) { |
|
189 | - return; |
|
190 | - } |
|
191 | - |
|
192 | - $this->user_service->set_entity( $user_id, intval( $post['wl_person'] ) ); |
|
193 | - |
|
194 | - } |
|
144 | + } |
|
145 | + |
|
146 | + /** |
|
147 | + * Handle storing the person entity associated with the user. |
|
148 | + * |
|
149 | + * @param int $user_id The user id of the user being saved. |
|
150 | + * |
|
151 | + * @since 3.14.0 |
|
152 | + */ |
|
153 | + public function edit_user_profile_update( $user_id ) { |
|
154 | + |
|
155 | + // In case it is a user editing his own profile, make sure he has admin |
|
156 | + // like capabilities. |
|
157 | + if ( ! current_user_can( 'edit_users' ) ) { |
|
158 | + return; |
|
159 | + } |
|
160 | + |
|
161 | + check_admin_referer( 'wordlift_user_save', 'wordlift_user_save_nonce' ); |
|
162 | + |
|
163 | + // Link an entity to the user. |
|
164 | + $this->link_entity( $user_id, $_POST ); |
|
165 | + |
|
166 | + // Deny and enable the edit entity capability |
|
167 | + if ( isset( $_POST['wl_can_create_entities'] ) ) { |
|
168 | + // User has capability so remove the deny indication if present. |
|
169 | + $this->user_service->allow_editor_entity_create( $user_id ); |
|
170 | + } else { |
|
171 | + $this->user_service->deny_editor_entity_create( $user_id ); |
|
172 | + } |
|
173 | + |
|
174 | + } |
|
175 | + |
|
176 | + /** |
|
177 | + * Link an entity (specified in the `$_POST` array) to the {@link WP_User} |
|
178 | + * with the specified `id`. |
|
179 | + * |
|
180 | + * @param int $user_id The {@link WP_User} `id`. |
|
181 | + * @param array $post The `$_POST` array. |
|
182 | + * |
|
183 | + * @since 3.14.0 |
|
184 | + */ |
|
185 | + private function link_entity( $user_id, $post ) { |
|
186 | + |
|
187 | + // Bail out if the `wl_person` parameter isn't set. |
|
188 | + if ( ! isset( $post['wl_person'] ) || ! is_numeric( $post['wl_person'] ) ) { |
|
189 | + return; |
|
190 | + } |
|
191 | + |
|
192 | + $this->user_service->set_entity( $user_id, intval( $post['wl_person'] ) ); |
|
193 | + |
|
194 | + } |
|
195 | 195 | |
196 | 196 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | */ |
14 | 14 | |
15 | 15 | if ( ! defined( 'ABSPATH' ) ) { |
16 | - exit; |
|
16 | + exit; |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | /** |
@@ -28,107 +28,107 @@ discard block |
||
28 | 28 | */ |
29 | 29 | class Wordlift_Admin_Entity_Taxonomy_List_Page { |
30 | 30 | |
31 | - /** |
|
32 | - * Hook to `wl_entity_type_row_actions` to add an "action" link to Thread |
|
33 | - * SEO related settings for the term. |
|
34 | - * |
|
35 | - * @see https://developer.wordpress.org/reference/hooks/taxonomy_row_actions/ |
|
36 | - * |
|
37 | - * @since 3.11.0 |
|
38 | - * |
|
39 | - * @param array $actions An array of action links to be displayed. Default |
|
40 | - * 'Edit', 'Quick Edit', 'Delete', and 'View'. |
|
41 | - * @param object $term Term object. |
|
42 | - * |
|
43 | - * @return array $actions An array of action links to be displayed. Default |
|
44 | - * 'Edit', 'Quick Edit', 'Delete', and 'View'. |
|
45 | - */ |
|
46 | - public function wl_entity_type_row_actions( $actions, $term ) { |
|
47 | - |
|
48 | - $url = admin_url( "admin.php?page=wl_entity_type_settings&tag_ID=$term->term_id" ); |
|
49 | - $actions['wl-seo'] = '<a href="' . esc_url( $url ) . '">' . __( 'SEO Settings', 'wordlift' ) . '</a>'; |
|
50 | - |
|
51 | - // Hacks for pre 4.7 compatibility: |
|
52 | - // * remove the quick edit. |
|
53 | - unset( $actions['inline hide-if-no-js'] ); |
|
54 | - // * remove the edit link. |
|
55 | - unset( $actions['edit'] ); |
|
56 | - |
|
57 | - return $actions; |
|
58 | - } |
|
59 | - |
|
60 | - /** |
|
61 | - * Override the capabilities related to managing the entity type terms |
|
62 | - * for multisite super admin to prevent it from manipulating it in any |
|
63 | - * way. |
|
64 | - * |
|
65 | - * @since 3.12.0 |
|
66 | - * |
|
67 | - * @param array $caps The user's current capabilities. |
|
68 | - * @param string $cap Capability name. |
|
69 | - * |
|
70 | - * @return array Array containing the do_not_allow capability for super admin |
|
71 | - * when editing and deleting entity type terms capabilities |
|
72 | - * are being "approved" |
|
73 | - */ |
|
74 | - public function restrict_super_admin( $caps, $cap ) { |
|
75 | - |
|
76 | - switch ( $cap ) { |
|
77 | - case 'wl_entity_type_edit_term': |
|
78 | - case 'wl_entity_type_delete_term': |
|
79 | - $caps[] = 'do_not_allow'; |
|
80 | - } |
|
81 | - |
|
82 | - return $caps; |
|
83 | - } |
|
84 | - |
|
85 | - /** |
|
86 | - * Override the capabilities related to managing the entity type terms |
|
87 | - * required for WordPress < 4.7 to get access to the admin page. |
|
88 | - * |
|
89 | - * Before 4.7, WordPress checks whether the user has permission to access |
|
90 | - * the `edit-tags.php` page. So we need to provide temporary the permission |
|
91 | - * otherwise the user will get an `access not allowed` when trying to access |
|
92 | - * the page. |
|
93 | - * |
|
94 | - * @see https://github.com/insideout10/wordlift-plugin/issues/512 |
|
95 | - * |
|
96 | - * @since 3.12.0 |
|
97 | - * |
|
98 | - * @param array $caps The user's current capabilities. |
|
99 | - * @param string $cap Capability name. |
|
100 | - * |
|
101 | - * @return array Array containing the manage_options capability |
|
102 | - */ |
|
103 | - public function enable_admin_access_pre_47( $caps, $cap ) { |
|
104 | - |
|
105 | - // Bail out if we're not dealing with the `wl_entity_type_edit_term` |
|
106 | - // capability. |
|
107 | - if ( 'wl_entity_type_edit_term' !== $cap || ! isset( $_SERVER['REQUEST_URI'] ) ) { |
|
108 | - return $caps; |
|
109 | - } |
|
110 | - |
|
111 | - $path = wp_parse_url( esc_url_raw( wp_unslash( $_SERVER['REQUEST_URI'], PHP_URL_PATH ) ) ); |
|
112 | - |
|
113 | - // Bail out if the `path` cannot be determined. |
|
114 | - if ( null === $path ) { |
|
115 | - return $caps; |
|
116 | - } |
|
117 | - |
|
118 | - // Bail out if a specific term is being handled. |
|
119 | - if ( isset( $_REQUEST['action'] ) ) { //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
120 | - return $caps; |
|
121 | - } |
|
122 | - |
|
123 | - // Split the path and check if the page is the `edit-tags.php`. We can't |
|
124 | - // use WP's own function because this is called very early. |
|
125 | - $components = explode( '/', $path ); |
|
126 | - if ( 'edit-tags.php' !== $components[ count( $components ) - 1 ] ) { |
|
127 | - return $caps; |
|
128 | - } |
|
129 | - |
|
130 | - // Give permission to the user. |
|
131 | - return array( 'manage_options' ); |
|
132 | - } |
|
31 | + /** |
|
32 | + * Hook to `wl_entity_type_row_actions` to add an "action" link to Thread |
|
33 | + * SEO related settings for the term. |
|
34 | + * |
|
35 | + * @see https://developer.wordpress.org/reference/hooks/taxonomy_row_actions/ |
|
36 | + * |
|
37 | + * @since 3.11.0 |
|
38 | + * |
|
39 | + * @param array $actions An array of action links to be displayed. Default |
|
40 | + * 'Edit', 'Quick Edit', 'Delete', and 'View'. |
|
41 | + * @param object $term Term object. |
|
42 | + * |
|
43 | + * @return array $actions An array of action links to be displayed. Default |
|
44 | + * 'Edit', 'Quick Edit', 'Delete', and 'View'. |
|
45 | + */ |
|
46 | + public function wl_entity_type_row_actions( $actions, $term ) { |
|
47 | + |
|
48 | + $url = admin_url( "admin.php?page=wl_entity_type_settings&tag_ID=$term->term_id" ); |
|
49 | + $actions['wl-seo'] = '<a href="' . esc_url( $url ) . '">' . __( 'SEO Settings', 'wordlift' ) . '</a>'; |
|
50 | + |
|
51 | + // Hacks for pre 4.7 compatibility: |
|
52 | + // * remove the quick edit. |
|
53 | + unset( $actions['inline hide-if-no-js'] ); |
|
54 | + // * remove the edit link. |
|
55 | + unset( $actions['edit'] ); |
|
56 | + |
|
57 | + return $actions; |
|
58 | + } |
|
59 | + |
|
60 | + /** |
|
61 | + * Override the capabilities related to managing the entity type terms |
|
62 | + * for multisite super admin to prevent it from manipulating it in any |
|
63 | + * way. |
|
64 | + * |
|
65 | + * @since 3.12.0 |
|
66 | + * |
|
67 | + * @param array $caps The user's current capabilities. |
|
68 | + * @param string $cap Capability name. |
|
69 | + * |
|
70 | + * @return array Array containing the do_not_allow capability for super admin |
|
71 | + * when editing and deleting entity type terms capabilities |
|
72 | + * are being "approved" |
|
73 | + */ |
|
74 | + public function restrict_super_admin( $caps, $cap ) { |
|
75 | + |
|
76 | + switch ( $cap ) { |
|
77 | + case 'wl_entity_type_edit_term': |
|
78 | + case 'wl_entity_type_delete_term': |
|
79 | + $caps[] = 'do_not_allow'; |
|
80 | + } |
|
81 | + |
|
82 | + return $caps; |
|
83 | + } |
|
84 | + |
|
85 | + /** |
|
86 | + * Override the capabilities related to managing the entity type terms |
|
87 | + * required for WordPress < 4.7 to get access to the admin page. |
|
88 | + * |
|
89 | + * Before 4.7, WordPress checks whether the user has permission to access |
|
90 | + * the `edit-tags.php` page. So we need to provide temporary the permission |
|
91 | + * otherwise the user will get an `access not allowed` when trying to access |
|
92 | + * the page. |
|
93 | + * |
|
94 | + * @see https://github.com/insideout10/wordlift-plugin/issues/512 |
|
95 | + * |
|
96 | + * @since 3.12.0 |
|
97 | + * |
|
98 | + * @param array $caps The user's current capabilities. |
|
99 | + * @param string $cap Capability name. |
|
100 | + * |
|
101 | + * @return array Array containing the manage_options capability |
|
102 | + */ |
|
103 | + public function enable_admin_access_pre_47( $caps, $cap ) { |
|
104 | + |
|
105 | + // Bail out if we're not dealing with the `wl_entity_type_edit_term` |
|
106 | + // capability. |
|
107 | + if ( 'wl_entity_type_edit_term' !== $cap || ! isset( $_SERVER['REQUEST_URI'] ) ) { |
|
108 | + return $caps; |
|
109 | + } |
|
110 | + |
|
111 | + $path = wp_parse_url( esc_url_raw( wp_unslash( $_SERVER['REQUEST_URI'], PHP_URL_PATH ) ) ); |
|
112 | + |
|
113 | + // Bail out if the `path` cannot be determined. |
|
114 | + if ( null === $path ) { |
|
115 | + return $caps; |
|
116 | + } |
|
117 | + |
|
118 | + // Bail out if a specific term is being handled. |
|
119 | + if ( isset( $_REQUEST['action'] ) ) { //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
120 | + return $caps; |
|
121 | + } |
|
122 | + |
|
123 | + // Split the path and check if the page is the `edit-tags.php`. We can't |
|
124 | + // use WP's own function because this is called very early. |
|
125 | + $components = explode( '/', $path ); |
|
126 | + if ( 'edit-tags.php' !== $components[ count( $components ) - 1 ] ) { |
|
127 | + return $caps; |
|
128 | + } |
|
129 | + |
|
130 | + // Give permission to the user. |
|
131 | + return array( 'manage_options' ); |
|
132 | + } |
|
133 | 133 | |
134 | 134 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | * @since 3.11.0 |
13 | 13 | */ |
14 | 14 | |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -43,16 +43,16 @@ discard block |
||
43 | 43 | * @return array $actions An array of action links to be displayed. Default |
44 | 44 | * 'Edit', 'Quick Edit', 'Delete', and 'View'. |
45 | 45 | */ |
46 | - public function wl_entity_type_row_actions( $actions, $term ) { |
|
46 | + public function wl_entity_type_row_actions($actions, $term) { |
|
47 | 47 | |
48 | - $url = admin_url( "admin.php?page=wl_entity_type_settings&tag_ID=$term->term_id" ); |
|
49 | - $actions['wl-seo'] = '<a href="' . esc_url( $url ) . '">' . __( 'SEO Settings', 'wordlift' ) . '</a>'; |
|
48 | + $url = admin_url("admin.php?page=wl_entity_type_settings&tag_ID=$term->term_id"); |
|
49 | + $actions['wl-seo'] = '<a href="'.esc_url($url).'">'.__('SEO Settings', 'wordlift').'</a>'; |
|
50 | 50 | |
51 | 51 | // Hacks for pre 4.7 compatibility: |
52 | 52 | // * remove the quick edit. |
53 | - unset( $actions['inline hide-if-no-js'] ); |
|
53 | + unset($actions['inline hide-if-no-js']); |
|
54 | 54 | // * remove the edit link. |
55 | - unset( $actions['edit'] ); |
|
55 | + unset($actions['edit']); |
|
56 | 56 | |
57 | 57 | return $actions; |
58 | 58 | } |
@@ -71,9 +71,9 @@ discard block |
||
71 | 71 | * when editing and deleting entity type terms capabilities |
72 | 72 | * are being "approved" |
73 | 73 | */ |
74 | - public function restrict_super_admin( $caps, $cap ) { |
|
74 | + public function restrict_super_admin($caps, $cap) { |
|
75 | 75 | |
76 | - switch ( $cap ) { |
|
76 | + switch ($cap) { |
|
77 | 77 | case 'wl_entity_type_edit_term': |
78 | 78 | case 'wl_entity_type_delete_term': |
79 | 79 | $caps[] = 'do_not_allow'; |
@@ -100,35 +100,35 @@ discard block |
||
100 | 100 | * |
101 | 101 | * @return array Array containing the manage_options capability |
102 | 102 | */ |
103 | - public function enable_admin_access_pre_47( $caps, $cap ) { |
|
103 | + public function enable_admin_access_pre_47($caps, $cap) { |
|
104 | 104 | |
105 | 105 | // Bail out if we're not dealing with the `wl_entity_type_edit_term` |
106 | 106 | // capability. |
107 | - if ( 'wl_entity_type_edit_term' !== $cap || ! isset( $_SERVER['REQUEST_URI'] ) ) { |
|
107 | + if ('wl_entity_type_edit_term' !== $cap || ! isset($_SERVER['REQUEST_URI'])) { |
|
108 | 108 | return $caps; |
109 | 109 | } |
110 | 110 | |
111 | - $path = wp_parse_url( esc_url_raw( wp_unslash( $_SERVER['REQUEST_URI'], PHP_URL_PATH ) ) ); |
|
111 | + $path = wp_parse_url(esc_url_raw(wp_unslash($_SERVER['REQUEST_URI'], PHP_URL_PATH))); |
|
112 | 112 | |
113 | 113 | // Bail out if the `path` cannot be determined. |
114 | - if ( null === $path ) { |
|
114 | + if (null === $path) { |
|
115 | 115 | return $caps; |
116 | 116 | } |
117 | 117 | |
118 | 118 | // Bail out if a specific term is being handled. |
119 | - if ( isset( $_REQUEST['action'] ) ) { //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
119 | + if (isset($_REQUEST['action'])) { //phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
120 | 120 | return $caps; |
121 | 121 | } |
122 | 122 | |
123 | 123 | // Split the path and check if the page is the `edit-tags.php`. We can't |
124 | 124 | // use WP's own function because this is called very early. |
125 | - $components = explode( '/', $path ); |
|
126 | - if ( 'edit-tags.php' !== $components[ count( $components ) - 1 ] ) { |
|
125 | + $components = explode('/', $path); |
|
126 | + if ('edit-tags.php' !== $components[count($components) - 1]) { |
|
127 | 127 | return $caps; |
128 | 128 | } |
129 | 129 | |
130 | 130 | // Give permission to the user. |
131 | - return array( 'manage_options' ); |
|
131 | + return array('manage_options'); |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | } |