Coding standards
Security in ResourceSpace
Developer reference
Database
Action functions
Admin functions
Ajax functions
Annotation functions
API functions
Collections functions
Comment functions
Config functions
CSV export functions
Dash functions
Debug functions
Encryption functions
Facial recognition functions
File functions
General functions
Language functions
Log functions
Login functions
Message functions
Migration functions
Node functions
PDF functions
Plugin functions
Render functions
Reporting functions
Request functions
Research functions
Slideshow functions
Theme permission functions
User functions
Video functions
Database functions
Metadata functions
Resource functions
Search functions
Map functions
Job functions
Tab functions
Test functions

config_section_header()

Description

Generate an html text section header

Parameters

ColumnTypeDefaultDescription
$title string the title of the section.
$description string the user text displayed to describe the section. Usually a $lang string.

Location

include/plugin_functions.php lines 650 to 662

Definition

 
function config_section_header($title$description)
{
    
?>
    <div class="Question">
        <br />
        <h2> echo escape($title); ?></h2>
         if ($description != "") { ?>
            <p> echo escape($description); ?></p>
         ?>
        <div class="clearerleft"></div>
    </div>
    
}

This article was last updated 17th November 2024 15:05 Europe/London time based on the source file dated 8th November 2024 11:50 Europe/London time.