Ejemplo n.º 1
0
function advert_cancel($id, $option)
{
    $app = JFactory::getApplication();
    if ($id) {
        $row = new wbAdvert_advert(JFactory::getDBO());
        $row->load($id);
        $row->checkin();
    }
    $app->redirect('index.php?option=' . WBADVERT_NAME . '&task=advert', JText::sprintf('MSG_CANCELLED', JText::_('Advertisement')));
}