У меня есть этот код для хранения новой статьи в Joomla:
JTable::addIncludePath(JPATH_PLATFORM . 'joomla/database/table');
$article = JTable::getInstance('content');
$article->title = 'This is my super cool title!';
$article->alias = JFilterOutput::stringURLSafe('This is my super cool title!');
$article->introtext = "some content";
$article->catid = 9;
$article->created = JFactory::getDate()->toSQL();;
$article->created_by_alias = 'my editor';
$article->state = 1;
$article->access = 1;
$article->metadata = '{"page_title":"","author":"","robots":""}';
$article->language = '*';
// Check to make sure our data is valid, raise notice if it's not.
if (!$article->check())
{
JError::raiseNotice(500, $article->getError());
return FALSE;
}
// Now store the article, raise notice if it doesn't get stored.
if (!$article->store(TRUE))
{
JError::raiseNotice(500, $article->getError());
return FALSE;
}
Но я не вижу, как обновить существующий с его идентификатором.
Где это в документе? У вас есть предложения?