=========================== */
?>
conf = new configuration();
}
function saveSettings($fieldsArray) {
if ($this->modificarDeFormulario($this->conf->tablePrefix."config", $fieldsArray)) {
header("Location: ".$this->conf->urlGelato."/admin/settings.php?modified=true");
die();
} else {
header("Location: ".$this->conf->urlGelato."/admin/settings.php?error=1&des=".$this->merror);
die();
}
}
function saveOption($value, $name) {
$sqlStr = "UPDATE ".$this->conf->tablePrefix."options SET val='".$value."' WHERE name='".$name."' LIMIT 1";
if ($this->ejecutarConsulta($sqlStr)) {
return true;
} else {
return true;
}
}
function addPost($fieldsArray) {
if ($this->insertarDeFormulario($this->conf->tablePrefix."data", $fieldsArray)) {
return true;
} else {
return false;
}
}
function modifyPost($fieldsArray, $id_post) {
if ($this->modificarDeFormulario($this->conf->tablePrefix."data", $fieldsArray, "id_post=$id_post")) {
header("Location: ".$this->conf->urlGelato."/admin/index.php?modified=true");
die();
} else {
header("Location: ".$this->conf->urlGelato."/admin/index.php?error=2&des=".$this->merror);
die();
}
}
function deletePost($idPost) {
$this->ejecutarConsulta("DELETE FROM ".$this->conf->tablePrefix."data WHERE id_post=".$idPost);
}
function getPosts($limit="10", $from="0") {
$sqlStr = "select * from ".$this->conf->tablePrefix."data ORDER BY date DESC LIMIT $from,$limit";
$this->ejecutarConsulta($sqlStr);
return $this->mid_consulta;
}
function getPost($id="") {
$this->ejecutarConsulta("select * from ".$this->conf->tablePrefix."data WHERE id_post=".$id);
return mysql_fetch_array($this->mid_consulta);
}
function getPostsNumber() {
$this->ejecutarConsulta("select count(*) as total from ".$this->conf->tablePrefix."data");
$row = mysql_fetch_assoc($this->mid_consulta);
return $row['total'];
}
function getType($id) {
if ($this->ejecutarConsulta("select type from ".$this->conf->tablePrefix."data WHERE id_post=".$id)) {
if ($this->contarRegistros()>0) {
while($registro = mysql_fetch_array($this->mid_consulta)) {
return $registro[0];
}
}
} else {
return "0";
}
}
function formatConversation($text) {
$formatedText = "";
$odd=true;
$lines = explode("\n", $text);
$formatedText .= "
\n";
foreach ($lines as $line) {
$pos = strpos($line, ":") + 1;
$label = substr($line, 0, $pos);
$desc = substr($line, $pos, strlen($line));
if ($odd) {
$cssClass = "odd";
} else {
$cssClass = "even";
}
$odd=!$odd;
$formatedText .= " - \n";
$formatedText .= " ".$label."\n";
$formatedText .= " ".$desc."\n";
$formatedText .= "
\n";
}
$formatedText .= "
\n";
return $formatedText;
}
function formatApiConversation($text) {
$formatedText = "";
$lines = explode("\n", $text);
foreach ($lines as $line) {
$pos = strpos($line, ":") + 1;
$name = substr($line, 0, $pos-1);
$label = substr($line, 0, $pos);
$desc = substr($line, $pos, strlen($line));
$formatedText .= "".$desc."\n";
}
return $formatedText;
}
function saveMP3($remoteFileName) {
if (getMP3File($remoteFileName)) {
return true;
} else {
return false;
}
}
function savePhoto($remoteFileName) {
if (getPhotoFile($remoteFileName)) {
return true;
} else {
return false;
}
}
function getVideoPlayer($url) {
if (isYoutubeVideo($url)) {
$id_video = getYoutubeVideoUrl($url);
return "\t\t\t\n";
} elseif (isVimeoVideo($url)) {
$id_video = getVimeoVideoUrl($url);
return "\t\t\t\n";
} elseif (isDailymotionVideo($url)) {
$id_video = getDailymotionVideoUrl($url);
return "\t\t\t\n";
} elseif (isYahooVideo($url)) {
$id_video = getYahooVideoCode($url);
return "\t\t\t\n";
} elseif (isSlideSharePresentation($url)) {
$id_video = getSlideSharePresentationCode($url);
return "\t\t\t\n";
} elseif (isGoogleVideoUrl($url)) {
$id_video = getGoogleVideoCode($url);
return "\t\t\t\n";
} elseif (isMTVVideoUrl($url)) {
$id_video = getMTVVideoCode($url);
return "\t\t\t\n";
} else {
return "This URL is not a supported video (YouTube, Google Video, Vimeo, DailyMotion, Yahoo Video, MTV or SlideShare)";
}
}
function getMp3Player($url) {
if (isMP3($url)) {
$playerUrl = $this->conf->urlGelato."/admin/scripts/player.swf?soundFile=".$url;
return "\t\t\t\n";
} elseif (isGoEar($url)) {
return "\t\t\t\n";
} elseif (isOdeo($url)) {
return "\t\t\t\n";
} else {
return "This URL is not an MP3 file.";
}
}
function getPermalink($post_id){
$strEnd = ($this->conf->urlFriendly) ? "/" : "";
$out = $this->conf->urlGelato;
$out .= ($this->conf->urlFriendly) ? "/post/" : "/index.php?post=";
$out .= $post_id.$strEnd;
return $out;
}
}
?>