startSectionEdit() public method

Register a new edit section range
Author: Adrian Lang (lang@cosmocode.de)
public startSectionEdit ( integer $start, string $type, string $title = null ) : string
$start integer The byte position for the edit start
$type string The section type identifier
$title string The section title
return string A marker class for the starting HTML element
示例#1
0
 public function startSectionEdit($start, $type, $title = null)
 {
     global $INFO;
     if ($INFO['perm'] > AUTH_READ) {
         return parent::startSectionEdit($start, $type, $title);
     }
     return "";
 }