Ir para conteúdo
Fórum Script Brasil
  • 0

Remover Data


MagoDanger

Pergunta

Pessoal, peguei um script de upload de imagens com painel ADM na internet bem legal.. fiz as alterações que precisava... porém tem uma coisa que não consegui remover:

- A data na hora da exibição na página

Vamos lá:

- Quando é feito o cadastro de uma categoria fica marcada a data/hora. No painel de controle é muito úitil pra mim isso, porém na exibição para os usuário é ruim. Veja abaixo nas fotos:

f01.JPG

f02.JPG

*** Essa data/hora que eu queria remover de exibição...

Tentei remover, mas não consigui.

A página "index", a qual exibe essas categorias com as fotos possui a seguinte programação:

<?
require("class.php");
$Gal = new Galeria;
$path = str_replace("/index.php","",$_SERVER["SCRIPT_FILENAME"]);
$T = new Template($path."/templates/index.htm");
$T->Replace("DIM", $dim);
$T->Replace("Titulo", $titulo);
/////////////////////////////////
    if(isset($_GET['cat'])){
        $inc= "Fotos";
    }else{
        $inc= "Galerias";
    }
$Include = new Template( $path."/templates/".$inc.".htm" );
require($inc.".php");    
/////////////////////////////////
echo $T->Show();
?>
a página "class.php"
<?
require('config.php');

function Alerta($msg){
    echo "<CENTER><br><B><font color=red>$msg</font></B><br>&nbsp;</CENTER>";
}

class Galeria {
    
    function Verifica(){
        @session_start();
        if($_SESSION['log']!="ok"){
            @session_unset();
            @session_destroy();
            header('location: login.php');
        }
    }

    function Imagem($img,$logo){
        $this -> Img = getimagesize($img);
        $type = $this -> Img[2];
        
        if( $type==1 ){
            $this -> Copia     = imagecreatefromgif( $img );
        }elseif( $type==3 ){
            $this -> Copia     = imagecreatefrompng( $img );
        }elseif( $type==2 ){
            $this -> Copia     = imagecreatefromjpeg( $img );
        }
        $this -> X = imagesx($this -> Copia);
        $this -> Y = imagesy($this -> Copia);
        $this -> Logo = imagecreatefromjpeg("imagens/$logo");
        imagecopymerge($this->Copia , $this -> Logo , $this -> X - (imagesx($this -> Logo) + 5) , $this -> Y - ( imagesy($this -> Logo) + 5 ) , 0 , 0 , imagesx($this -> Logo) , imagesy($this -> Logo) , 100);
        header ("Content-type: image/jpeg");
        imagepng($this -> Copia);
        @imagedestroy( $this->Copia );
        @imagedestroy( $this->Logo );
    }
    
    function Thumb($img,$dim){
        $this -> Img = getimagesize($img);
        $type = $this -> Img[2];
        
        if( $type==1 ){
            $this -> Copia     = imagecreatefromgif( $img );
        }elseif( $type==3 ){
            $this -> Copia     = imagecreatefrompng( $img );
        }elseif( $type==2 ){
            $this -> Copia     = imagecreatefromjpeg( $img );
        }
        
        $this -> X = imagesx($this -> Copia);
        $this -> Y = imagesy($this -> Copia);
        
        if($this -> X > $this -> Y){
            $this -> T_X = $dim;
            $this -> T_Y = floor( ($this -> Y * $dim) / $this -> X );
        }elseif( $this -> Y > $this -> X ){
            $this -> T_Y = $dim;
            $this -> T_X = floor( ($this -> X * $dim) / $this -> Y );
        }else{
            $this -> T_X = $dim;
            $this -> T_Y = $dim;
        }
        
        $this -> Thumb = imagecreatetruecolor( $this -> T_X , $this -> T_Y );
        
        imagecopyresampled(        
        $this -> Thumb , $this -> Copia, 0,0,0,0, $this -> T_X ,$this -> T_Y , $this -> X, $this -> Y );
        
        header ("Content-type: image/jpeg");
        imagejpeg($this -> Thumb);
        @imagedestroy( $this->Thumb );
        @imagedestroy( $this->Copia );
    }
    
    
            
}

class Template{
    var $Template;
    var $Tabela, $Num, $Loop;
    
    function Template($arquivo){
        $open_o = fopen($arquivo,"r");
        $this -> Template = fread( $open_o , filesize($arquivo) );
    }
    
    function Show(){
        return $this-> Template;
    }
    
    function Replace($var, $conteudo){
        $this->Template = str_replace("[".$var."]",$conteudo, $this->Template);
    }
    
    function Loop( $lugar, $valores ){
        $this->Loop = $lugar;
        if( strstr($this->Template,"[-$lugar-]") ){
            $this->Template = str_replace( "[-$lugar-]" , $this->Tabela."[-$lugar-]" , $this->Template );
        }else{
            $partes = explode("<!--".$lugar."-->",$this->Template);
            $partes2 = explode( "<!--/".$lugar."-->" , $partes[1] );
            $this->Tabela = $partes2[0];
            $this->Template = str_replace( "<!--$lugar-->".$this->Tabela."<!--/$lugar-->" , $this->Tabela."[-$lugar-]" , $this->Template);
        }
        foreach($valores as $chave=>$valor){
            $this->Template = str_replace("[$chave]",$valor,$this->Template);
        }
    }
    
    function CloseLoop(){
        $this->Template = str_replace( "[-".$this->Loop."-]", "", $this->Template);
    }
}


?>
Na página "template" não tem nada... depois tem a página "galerias.php":
<?
@session_start();
@session_unset();
@session_destroy();
$cats = mysql_query("select * from cats");
if(mysql_num_rows($cats)>0){
$i = 1;
$arr=array();
while($d = mysql_fetch_array($cats)){
    foreach($d as $chave=>$valor){
        $arr[$chave] = $valor;
    }
    $arr['n'] = $i;
    $Include->Loop('Galerias', $arr );
    $i=$i+1;
}
$Include->CloseLoop('Galerias');
$T->Replace("INCLUDE", $Include->Show() );
}else{
    $T->Replace("INCLUDE","<b>Nenhuma categoria encontrada!</b>");
}
?>
a página "img.php"
<?
require("class.php");
$Gal = new Galeria;
$d = explode("?",$_GET['id']);
$cat = $d[0]; $img = $d[1];
$path = str_replace("/img.php","",$_SERVER["SCRIPT_FILENAME"]."/imgs/$cat/$img");
if(file_exists( $path )){
    $Gal->Imagem( $path , $logo);
}else{
    header ("Content-type: image/jpeg");
    $im = imagecreatefromjpeg("imagens/not_found.jpg");
    imagejpeg($im);
    imagedestroy($im);
}
?>
e a página "fotos.php"
<?
$cat = addslashes($_GET['cat']);
$busca = mysql_query("select * from cats where id='$cat'");
$d = mysql_fetch_array($busca);
@session_start();
$Include->Replace("gal",$d['nome']);
$Include->Replace("data",$d['data']);
$imgs = array();
$abre = opendir("$path/imgs/$cat");
if(!isset($_SESSION['gal_'.$cat])){
    while (false !== ($file = readdir($abre))) {
        if($file=="." || $file==".."){
            continue;
        }else{
            array_push( $imgs , $file );
        }
    }
    $_SESSION['gal_'.$cat] = $imgs;
    //echo" Loop ";
}else{
    $imgs = $_SESSION['gal_'.$cat];
    //echo" Session ";
}
if(count($imgs)!=0){
    $val = $imgs[0];    unset($imgs[0]);    array_push( $imgs , $val );
    if(isset($_GET['p'])){
        $counter1 = $_GET['p'];    $cc1 = $counter1;
        $counter2 = ceil($_GET['p']/$imgs_p_pagina)*$imgs_p_pagina;
    }else{
        $counter1 = 1;
        $counter2 = $imgs_p_pagina;
        $yyy = "ok";
    }
    //echo "$counter1-$counter2";
    $porcentagem = 100/$imgs_p_linha;
    $Linha=1;
    while($counter1<=$counter2){
        echo" $counter ";
        if($imgs[$counter1]!=""){
            //echo $imgs[$counter1];
            if($Linha==$img_p_linha){
                $Linha=1;
                $br = "<BR>";
                $porcetagem--;
            }else{
                $Linha++;
            }
            $infos = @getimagesize("$path/imgs/$cat/".$imgs[$counter1] );
            $arr['x'] = $infos[0];
            $arr['y'] = $infos[1];
            $arr['porcentagem'] = $porcentagem;
            $arr['dir_img'] = "$cat?".$imgs[$counter1];
            $arr['BR'] = $br;        
            $Include->Loop("Imgs",$arr);
            if($br != ""){$br = "";    }
        }
        $counter1++;
    }
    $Include->CloseLoop('Imgs');
/////////////////////////////////////
$pagination = "\n\n\n\n\n\n\n\n\n";
if($_GET['p']>$imgs_p_pagina){
    $aaa = $cc1 - $imgs_p_pagina;
    $pagination .= "<a href='?cat=$cat&p=$aaa'><< Voltar</a>&nbsp;&nbsp;&nbsp;";    
}
$h=1; 
for( $i=1; $i<=count($imgs); $i=$i+$imgs_p_pagina ){
    if($h==(ceil($_GET['p']/$imgs_p_pagina))){
        $ppp="<b>$h</b>";
    }else{
        $ppp = $h;
        if($h==1 && !isset($_GET['p'])){
            $ppp="<b>$h</b>";
        }
    }
    $pagination .= "&nbsp;&nbsp;<a href='?cat=$cat&p=". $i ."'>$ppp</a>&nbsp;&nbsp;";
    $h++;
}
if(isset($imgs[$counter2+1])){
    $uuu = $counter2+1;
    $pagination .= "&nbsp;&nbsp;&nbsp;<a href='?cat=$cat&p=$uuu'>Próxima >></a>";
}
$pagination .= "\n\n\n\n\n\n\n\n\n";
$Include->Replace("Paginação", $pagination );
/////////////////////////////////////
    $T->Replace("INCLUDE", $Include->Show() );
}else{
    $T->Replace("INCLUDE","<b><a href='index.php'>Galerias</a> > ".$d['nome']." - (".$d['data'].")<br><br><font color=red>Nenhuma imagem encontrada!</font></b>");
}
?>

Penso que tem que mudar alguma coisa no $d (deve ser ele que representa a data/hora)... tentei várias coisas mas não consegui.... alguém pode me ajudar nisso?

Obrigado pessoa!!!

Editado por MagoDanger
Link para o comentário
Compartilhar em outros sites

0 respostass a esta questão

Posts Recomendados

Até agora não há respostas para essa pergunta

Participe da discussão

Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.

Visitante
Responder esta pergunta...

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emoticons são permitidos.

×   Seu link foi incorporado automaticamente.   Exibir como um link em vez disso

×   Seu conteúdo anterior foi restaurado.   Limpar Editor

×   Você não pode colar imagens diretamente. Carregar ou inserir imagens do URL.



  • Estatísticas dos Fóruns

    • Tópicos
      152,3k
    • Posts
      652,6k
×
×
  • Criar Novo...