¿Nuevo usuario?
Puedes registrarte aquí
 
       
Menú principal
 
 Navegación
Buscar
dpForo
dpFAQ
dpManuales
dpDescargas
dpThemes
Noticias por Temas
Recomiéndanos
Enlaces
Créditos
dzStaffStatus
Miembros:  Administradores
No Conectado  el_cuervo  
No Conectado  Dixso  
Miembros:  Colaboradores
No Conectado  AnyKiller  
No Conectado  nestormateo  
No Conectado  docser  
Miembros:  Moderadores
No Conectado  cardiru  
No Conectado  javiermisol  
Miembros:  Traductores
Conectado  gnrx  
Miembros:  Miembros:
Ultimo:  Nuevos Hoy: 5
Ultimo:  Nuevos Ayer: 10
Ultimo:  Total: 71458
Ultimo:  Ultimo:
jopacer
Miembros:  Conectados
Miembros:  Miembros: 2
Invitados:  Invitados: 47
Total:  Total: 49
Miembros:  Miembros Online
Conectado  gnrx  
Conectado  garciais1  
Sponsor
dp-Tools
 Generador de Menús
 Pop-Up Maker
 Generador de Bloques
 Generador de Módulos
Enlázanos


Texto del enlace:


Otros Banners:



Theme creado por
dev-postnuke.com

 Foro dev-postnuke.com
  Postnuke :: Configuración
  ¿Top links en este theme?

Bienvenido invitado

Moderado por: Dixso, el_cuervo, AnyKiller, cardiru, javiermisol << Tema anterior   Tema siguiente >>
Imprimir tema
Autor Tema: ¿Top links en este theme?
Ferk
Enviado: 27/03/2004 a las 01:03
Forero
Forero

avatar

Karma: 10 (1 Votos)

Registrado: 28/02/04
Mensajes: 101

Estado: Desconectado
Ultima visita: 27/12/07
Donde están los top_links en el theme PN Helius? wink
Ferk Enviar MP


rsotogar177
Enviado: 27/03/2004 a las 01:03
Posteador de Bronce
Posteador de Bronce

avatar

Karma: 10 (2 Votos)

Registrado: 07/03/04
Mensajes: 289

Estado: Desconectado
Ultima visita: 21/10/08
no se que tema es ese, pero supongo que podras incluir a traves del administrador de bloques un bloque con esa informacion... o sino, fijate que en el bloque main menu puedes incluir otros links, solo tienes que conocer la url..por ejemplo yo he incluido el link foros con la url = [XForum]

no se si te vale



Mi güeb: Ayuda a luchar contra los precios abusivos, dime donde has encontrado cosas más baratas, dame tu opinión:

http://www.ahorradores.net
rsotogar177 Enviar MP WwW
Ferk
Enviado: 27/03/2004 a las 16:03
Forero
Forero

avatar

Karma: 10 (1 Votos)

Registrado: 28/02/04
Mensajes: 101

Estado: Desconectado
Ultima visita: 27/12/07
Gracias pero yo digo los links de la parte de arriba,los que en esta página son: Inicio,dpDesarrollo,dpManuales,dpThemes,dpDescargas y dpForos. wink
Ferk Enviar MP
Invitado 
Enviado: 27/03/2004 a las 16:03
Usuario no registrado Me suena el theme pero no recuerdo exactamente como era... pegame aqui la funcion themeheader() completa y veremos donde andan esos links...

Salu2 de Waisen.
Ferk
Enviado: 27/03/2004 a las 18:03
Forero
Forero

avatar

Karma: 10 (1 Votos)

Registrado: 28/02/04
Mensajes: 101

Estado: Desconectado
Ultima visita: 27/12/07
Este es el theme.php de este theme:

wink <?php
// ----------------------------------------------------------------------
// Copyright (c) 2002-2003 Shawn McKenzie
// http://spidean.mckenzies.net
// ----------------------------------------------------------------------
// LICENSE
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License (GPL)
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// To read the license please visit http://www.gnu.org/copyleft/gpl.html
// ----------------------------------------------------------------------

global $all_vars, $index;

$postnuke_theme = true;
$autotheme_theme = true;

//Include theme specific files for config, command definition, parsing and functions
include(dirname(__FILE__)."/theme.cfg");

$thename = basename(dirname(__FILE__));
themes_get_language();

include(dirname(__FILE__)."/includes/commands.inc.php");
include(dirname(__FILE__)."/includes/autotheme.inc.php");

//Tables that modules and others call so as to keep consistent with the theme
function OpenTable()
{
global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\" bgcolor=\"$bgcolor2\">
\n";
echo "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"8\" bgcolor=\"$bgcolor1\">
\n";
}

function CloseTable()
{
echo "
\n";
}

function OpenTable2()
{
global $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;
echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"0\" bgcolor=\"$bgcolor2\" align=\"center\">
\n";
echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"8\" bgcolor=\"$bgcolor1\">
\n";
}

function CloseTable2()
{
echo "
\n";
}

//This is the theme header - the layout that is rendered before the modules
function themeheader()
{
global $all_vars;
extract($all_vars);
atThemeRender($output['header']);
}

//This is the theme footer - the layout that is rendered after the modules
function themefooter()
{
global $all_vars;
extract($all_vars);
atThemeRender($output['footer']);
}

//This displays the article summary on the main page
function themeindex ($_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $info, $links, $preformat)
{
global $all_vars;
extract($all_vars, EXTR_SKIP);
//$all_vars = get_defined_vars();

$summary_count ++;

if($alternate_summary) {
if($summary_count % 2 == 0) {
$sparts = $output['summary1'];
$scommands = $commands['summary1'];
} else {
$sparts = $output['summary2'];
$scommands = $commands['summary2'];
}
} else {
$sparts = $output['summary'];
$scommands = $commands['summary'];
}

$all_vars = get_defined_vars();
atThemeRender($sparts);
}

//This displays the full article when read more... is clicked in the article summary
function themearticle ($_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $_deprecated, $info, $links, $preformat)
{
global $all_vars;
extract($all_vars, EXTR_SKIP);
$all_vars = get_defined_vars();
atThemeRender($output['article']);
}

//These are the side blocks
function themesidebox($block)
{
global $all_vars;
extract($all_vars, EXTR_SKIP);

switch($block['position']) {
case 'l':
$bparts = $output['leftblock'];
break;

case 'r':
$bparts = $output['rightblock'];
break;

case 'c':
$bparts = $output['centerblock'];
break;

case '1':
$bparts = $output['area1block'];
break;

case '2':
$bparts = $output['area2block'];
break;

case '3':
$bparts = $output['area3block'];
break;

case '4':
$bparts = $output['area4block'];
break;

case '5':
$bparts = $output['area5block'];
break;

case '6':
$bparts = $output['area6block'];
break;

case '7':
$bparts = $output['area7block'];
break;

case '8':
$bparts = $output['area8block'];
break;

case '9':
$bparts = $output['area9block'];
break;

case 't':
$bparts = $output['topblock'];
break;

case 'b':
$bparts = $output['bottomblock'];
break;
}
//Define custom block templates
$title = trim(strip_tags($block['title'], ""));

if($custom_block) {
foreach($custom_block as $name => $file) {
if($name == $title && file_exists($themepath.$file)) {
$HTML = atTemplateLoad($themepath.$file);
$bparts = atCommandParse($HTML, $command);
}
}
}
//Use custom image for specific block title if available
$title = strtolower(preg_replace("^\W|_^", "", $title));

if(file_exists("$imgpath"."$title.gif")) {
$block['title'] = "<img src=\"$imgpath"."$title.gif\">";
}
elseif(file_exists("$imgpath"."$title.jpg")) {
$block['title'] = "<img src=\"$imgpath"."$title.jpg\">";
}
elseif(file_exists("$imgpath"."$title.png")) {
$block['title'] = "<img src=\"$imgpath"."$title.png\">";
}
//Echo parts and execute commands
if($bparts) {
$all_vars = get_defined_vars();
atThemeRender($bparts);
}
}

?>
Ferk Enviar MP
Invitado 
Enviado: 27/03/2004 a las 22:03
Usuario no registrado Jejeje, perdona, no sabia que era autotheme biggrin al ser at en el theme.php simplemente se definen las funciones pero su contenido se encuentra en los html, asi que necesito el theme.html XD

Por cierto, gracias, me estaba rallando con la opcion de poner una imagen como titulo de bloque en funcion del titulo que se le asigna al crearlo y en ese theme viene (por si a alguien le interesa hacerlo en autotheme...)

Cita //Define custom block templates
$title = trim(strip_tags($block['title'], ""));

if($custom_block) {
foreach($custom_block as $name => $file) {
if($name == $title && file_exists($themepath.$file)) {
$HTML = atTemplateLoad($themepath.$file);
$bparts = atCommandParse($HTML, $command);
}
}
}
//Use custom image for specific block title if available
$title = strtolower(preg_replace("^\W|_^", "", $title));

if(file_exists("$imgpath"."$title.gif")) {
$block['title'] = "<img src=\"$imgpath"."$title.gif\">";
}
elseif(file_exists("$imgpath"."$title.jpg")) {
$block['title'] = "<img src=\"$imgpath"."$title.jpg\">";
}
elseif(file_exists("$imgpath"."$title.png")) {
$block['title'] = "<img src=\"$imgpath"."$title.gif\">";
}
//Echo parts and execute commands
if($bparts) {
$all_vars = get_defined_vars();
atThemeRender($bparts);
}
}


Salu2 de Waisen.
Ferk
Enviado: 28/03/2004 a las 00:03
Forero
Forero

avatar

Karma: 10 (1 Votos)

Registrado: 28/02/04
Mensajes: 101

Estado: Desconectado
Ultima visita: 27/12/07
-Si,está en el theme.html,ya se como cambiarlo pero podría meter el pie_barra_vacia.gif del dpPitBullv2 ? wink
Ferk Enviar MP
Invitado 
Enviado: 28/03/2004 a las 00:03
Usuario no registrado A mi no me pidas permiso... es GNU... si sabes hacerlo, pues si, tienes mi beneplacito biggrin
Ferk
Enviado: 28/03/2004 a las 01:03
Forero
Forero

avatar

Karma: 10 (1 Votos)

Registrado: 28/02/04
Mensajes: 101

Estado: Desconectado
Ultima visita: 27/12/07
Lo malo es que no se como hacerlo... biggrin
Ferk Enviar MP




Powered by pnForum Version 2.6

Inicio  |  dpFaq  |  dpManuales  |  dpDescargas  |  dpThemes  |  Contacta

Web site powered by PostNuke MySQL PHP Postnuke Spain PHP RSSPixel Add to Technorati Favorites

Todos los logos y marcas registradas en este sitio son propiedad de sus respectivos dueños. Los comentarios son propiedad de sus autores, el resto es de este sitio Web (c) 2003, que fue creado con PostNuke, un sistema portal Web escrito en PHP. PostNuke es Software Libre liberado bajo la licencia GNU/GPL.

Dev-CMS.com :: Amplía tus horizontes.

HOSPEDAJE Y DOMINIOS -- Tu Hosting
Alojamiento Web --- Registro de Dominios