JSON::getAdditionalSettingsHTML PHP Méthode

getAdditionalSettingsHTML() public méthode

    public function getAdditionalSettingsHTML()
    {
        $html = <<<END
\t<input type="checkbox" name="etJSON_stripWhitespace" id="etJSON_stripWhitespace" value="1" />
\t\t<label for="etJSON_stripWhitespace">{$this->L["strip_whitespace"]}</label><br />
\t{$this->L["data_structure_format"]}
\t\t<input type="radio" name="etJSON_dataStructureFormat" value="complex" id="stJSON_dataStructureFormat1" checked="checked" />
\t\t\t<label for="stJSON_dataStructureFormat1">{$this->L["complex"]}</label>
\t\t<input type="radio" name="etJSON_dataStructureFormat" value="simple" id="stJSON_dataStructureFormat2" />
\t\t\t<label for="stJSON_dataStructureFormat2">{$this->L["simple"]}</label>
END;
        return $html;
    }