Кілька тегів, розділених комою, означають логічне І між ними. Ви також можете використовувати крапку з комою в якості логічного АБО. І має вищий пріоритет над АБО. Ви не можете використовувати дужки для угруповання умов. Зірочка (*) всередині тега використовується як маска для "підрядка".
Розділи: 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...
Розділи: 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...
Розділи: 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'); } }
Розділи: Documentation (Genoa and older) / English / Plugins
Розділи: Documentation (Genoa and older) / English / Miscellaneous