mokujin
11-03-2008, 10:00 PM
This is a tutorial of how to add new albums using data managers.
Just paste this code in to your file:
$albumdata =& datamanager_init('Album', $vbulletin, ERRTYPE_ARRAY);
$albumdata->set('userid', $vbulletin->userinfo['userid']);
$albumdata->set('title', 'Auto-Album');
$albumdata->set('description', 'Auto-Album description');
$albumdata->set('state', 'public');
$albumdata->pre_save();
if (empty($albumdata->errors))
{
$albumdata->save();
}
else
{
print_r($albumdata->errors);
}
'title' - Title of the Album
'description' - Album description
'state' - public, private or profile.
Just paste this code in to your file:
$albumdata =& datamanager_init('Album', $vbulletin, ERRTYPE_ARRAY);
$albumdata->set('userid', $vbulletin->userinfo['userid']);
$albumdata->set('title', 'Auto-Album');
$albumdata->set('description', 'Auto-Album description');
$albumdata->set('state', 'public');
$albumdata->pre_save();
if (empty($albumdata->errors))
{
$albumdata->save();
}
else
{
print_r($albumdata->errors);
}
'title' - Title of the Album
'description' - Album description
'state' - public, private or profile.