Einige durch Komma getrennte Tags werden mit logischem AND zwischen ihnen behandelt. Du kannst auch das Semikolon als logischen OR-Interpreter benutzen. AND hat Priorität über OR und du kannst keine Einklammerungen für logische Gruppierungen nutzen. Stern (*) wird als Maske für "Jede Zeichenkette" genutzt.
Sektionen: Documentation / Extending Cotonti / Extensions
Cotonti allows for plugins to set certain configuration options for the administrator. These options are displayed in the Administration Panel under Configuration. This enables you to create flexible plugins with customisable values instead of hard-coded values.
The configuration options for your plugin are loaded from the plugin setup file (pluginname.setup.php) when it is installed through the Administration Panel. One consequence is that you will need to update the plugin...
Sektionen: Documentation / Extending Cotonti / Extensions
Those familiar with building or modifying Cotonti templates will have seen and used template tags. Tags are short bits of code which, when parsed by XTemplate, are replaced by a block of HTML code. This ensures your template file exists only of HTML code. Any PHP generated code is handled by the plugin and parsed using a tag.
When developing a plugin, it’s important to know how to define tags and conditional blocks with the XTemplate system. Before, most plugins used the legacy way of getting...
Sektionen: Documentation (Genoa and older) / English / Plugins
$extp = sed_getextplugins('index.main');
if (is_array($extp))
{ foreach($extp as $k => $pl) { include_once($cfg['plugins_dir'].'/'.$pl['pl_code'].'/'.$pl['pl_file'].'.php'); } }
Sektionen: Documentation (Genoa and older) / English / Plugins
Sektionen: Documentation (Genoa and older) / English / Miscellaneous