/* =========================== gelato CMS development version http://www.gelatocms.com/ gelato CMS is a free software licensed under GPL (General public license) =========================== */ ?> require_once('../config.php'); include("../classes/user.class.php"); include("../classes/gelato.class.php"); include("../classes/templates.class.php"); require_once("../classes/configuration.class.php"); $user = new user(); $tumble = new gelato(); $conf = new configuration(); $template = new plantillas("admin"); if ($user->isAdmin()) { if(isset($_POST["btnAdd"])) { unset($_POST["btnAdd"]); if ($_POST["type"]=="2") { // is Photo type if (isset($_POST["url"]) && $_POST["url"]!="") { $photoName = getFileName($_POST["url"]); if (!$tumble->savePhoto($_POST["url"])) { header("Location: ".$conf->urlGelato."/admin/index.php?photo=false"); die(); } $_POST["url"] = $conf->urlGelato."/uploads/".$photoName; } if ( move_uploaded_file( $_FILES['photo']['tmp_name'], "../uploads/".$_FILES['photo']['name'] ) ) { $_POST["url"] = $conf->urlGelato."/uploads/".$_FILES['photo']['name']; } unset($_POST["photo"]); unset($_POST["MAX_FILE_SIZE"]); } if ($_POST["type"]=="7") { // is MP3 type set_time_limit(300); $mp3Name = getFileName($_POST["url"]); if (!$tumble->saveMP3($_POST["url"])) { header("Location: ".$conf->urlGelato."/admin/index.php?mp3=false"); die(); } $_POST["url"] = $conf->urlGelato."/uploads/".$mp3Name; } if (isset($_POST["id_post"])) { //$tumble->modifyPost($_POST, $_POST["id_post"]); } else { if ($tumble->addPost($_POST)) { header("Location: ".$conf->urlGelato."/admin/index.php?added=true"); die(); } else { header("Location: ".$conf->urlGelato."/admin/index.php?error=2&des=".$this->merror); die(); } } } elseif (isset($_GET["new"])) { ?>
Add content
gelato CMS :: PHP/MySQL Tumblelog Content Management System.