Changeset 3330683
- Timestamp:
- 07/19/2025 04:45:05 PM (9 months ago)
- Location:
- cb-parallax/trunk/admin
- Files:
-
- 3 edited
-
includes/class-meta-box.php (modified) (1 diff)
-
menu/includes/class-options.php (modified) (1 diff)
-
partials/class-help-sidebar-display.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cb-parallax/trunk/admin/includes/class-meta-box.php
r3330678 r3330683 203 203 /** 204 204 * Retrieves the user-defined optuons and orchestrates the functions that display the form and the settings fields. 205 * 206 * @param \WP_Post $post 207 */ 208 public function meta_box_display($post) : void 205 */ 206 public function meta_box_display() : void 209 207 { 210 208 global $post; -
cb-parallax/trunk/admin/menu/includes/class-options.php
r3330682 r3330683 698 698 * Returns the plugin options based on the plugin settings or the post meta data respectively. 699 699 * 700 * @param mixed | \WP_Post $post | bool false701 *702 700 * @return array 703 701 */ 704 public function get_plugin_options( $post) : array702 public function get_plugin_options() : array 705 703 { 706 704 global $post; -
cb-parallax/trunk/admin/partials/class-help-sidebar-display.php
r3330678 r3330683 2 2 3 3 namespace CbParallax\Admin\Partials; 4 5 use WP_Screen; 4 6 5 7 /** … … 29 31 * @since 0.9.0 30 32 */ 31 public static function help_sidebar_display(string $domain, $current_screen) : string33 public static function help_sidebar_display(string $domain, WP_Screen $current_screen) : string 32 34 { 33 35 $html = $current_screen->get_help_sidebar();
Note: See TracChangeset
for help on using the changeset viewer.