Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource 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 615 to 626

Definition

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

    
}

This article was last updated 19th March 2024 10:05 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.