* @copyright 2001 - 2011 Ampache.org * @license http://opensource.org/licenses/gpl-2.0 GPLv2 * @version PHP 5.2 * @link http://www.ampache.org/ * @since File available since Release 1.0 */ require_once 'lib/init.php'; show_header(); // Switch on the incomming action switch ($_REQUEST['action']) { case 'add_shout': // Must be at least a user to do this if (!Access::check('interface','25')) { access_denied(); exit; } if (!Core::form_verify('add_shout','post')) { access_denied(); exit; } $shout_id = shoutBox::create($_POST); header("Location:" . Config::get('web_path')); break; case 'show_add_shout': // Get our object first $object = shoutBox::get_object($_REQUEST['type'],$_REQUEST['id']); if (!$object->id) { Error::add('general',_('Invalid Object Selected')); Error::display('general'); break; } // Now go ahead and display the page where we let them add a comment etc require_once Config::get('prefix') . '/templates/show_add_shout.inc.php'; break; default: header("Location:" . Config::get('web_path')); break; } // end switch on action show_footer(); ?>