
Oder muß man da erst den PHP-Nippel duch die MySql-Lasche ziehen

danke für tipps,
a.
Code: Alles auswählen
# Contenido Extension Chain
# @see docs/techref/plugins/Contenido Extension Chainer.pdf
#
# Usage:
# One could define the file contenido/includes/config.local.php
# with following code.
#
# global $_cecRegistry;
# cInclude("plugins", "extension/extension.php");
# $_cecRegistry->addChainFunction("Contenido.Content.DeleteArticle", "AdditionalFunction1");
#
# If function "AdditionalFunction1" is defined in file extension.php, it would be called via
# $chainEntry->execute($idart);
$iterator = $_cecRegistry->getIterator("Contenido.Content.DeleteArticle");
while ($chainEntry = $iterator->next())
{
$chainEntry->execute($idart);
}