File manager - Edit - /home/monara/public_html/efm_web/wp-content/plugins/radio-station/help/contextual-help-config.php
Back
<?php /* * Contextual help system for radio-station plugin * Author: Andrew DePaula * (c) Copyright 2020 * Licence: GPL3 */ define( 'RADIO_STATION_PREFIX', 'radio-station' ); // ----------------------- // Contextual Help Screens // ----------------------- add_action( 'current_screen', 'radio_station_contextual_help', 10, 3 ); function radio_station_contextual_help() { $screen = get_current_screen(); // Add a custom if statement stanza per screen you wish to include help on. // Make sure the screen id in the if condition matches the page where you want the included help to appear // and edit the id and title in the add_help_tab() call to suite. id must be unique accross all help tabs. // you can create multiple tabs on the same help screen by duplicating the inner // if statement multiple times (with a unique help tab id for each one). // uncomment line below and view log file to id a particular screen // error_log("Displaying screen '". print_r($screen->id,true)."'\n", 0); //code to write a line to wp-content/debug.log (works) // --- edit show contextual help --- // TODO: re-enable when Managing Shows help text is written /* if ( 'edit-show' == $screen->id ) { // --- import feature documentation tab --- $help_file = RADIO_STATION_DIR . '/help/edit-show.php'; if ( file_exists( $help_file ) ) { $content = radio_station_get_help_output( $help_file ); $screen->add_help_tab( array( 'id' => 'rs-edit-show', 'title' => __( 'Managing Shows' ), // tab name 'content' => $content, ) ); } } */ // --- contextual help for import/export screen --- $prefix = RADIO_STATION_PREFIX . '_page_'; if ( $prefix . 'import-export-shows' == $screen->id ) { // --- import feature documentation tab --- $help_file = RADIO_STATION_DIR . '/help/import.php'; if ( file_exists( $help_file ) ) { $content = radio_station_get_help_output( $help_file ); $screen->add_help_tab( array( 'id' => 'rs-import', 'title' => __( 'Import' ), // tab name 'content' => $content, ) ); } // --- export feature documentation tab --- $help_file = RADIO_STATION_DIR . '/help/export.php'; if ( file_exists( $help_file ) ) { $content = radio_station_get_help_output($help_file); $screen->add_help_tab( array( 'id' => 'rs-export', 'title' => __( 'Export' ), // tab name 'content' => $content, ) ); } //--- YAML file format documentation tab --- $help_file = RADIO_STATION_DIR . '/help/yaml.php'; if ( file_exists( $help_file ) ) { $content = radio_station_get_help_output( $help_file ); $screen->add_help_tab( array( 'id' => 'yaml-data-format', 'title' => __( 'YAML format '), // tab name 'content' => $content, ) ); } // --- show-schedule key documentation tab --- $help_file = RADIO_STATION_DIR . '/help/show-schedule.php'; if ( file_exists( $help_file ) ) { $content = radio_station_get_help_output( $help_file ); $screen->add_help_tab( array( 'id' => 'rs-show-schedule', 'title' => __ ('show-schedule:' ), // tab name 'content' => $content, ) ); } } // return $contextual_help; } // ------------------------- // Get Contents of Help File // ------------------------- function radio_station_get_help_output( $path ) { ob_start(); include $path; $var = ob_get_contents(); ob_end_clean(); return $var; }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings