Juanberroc Posted April 13, 2010 Share Posted April 13, 2010 Hola soy nuevo por aquí si me ayudan se los agradecere muchoJuan desde México<?phpclass BlockMSN extends Module{ function __construct() { $this->name = 'blockmsn'; $this->tab = 'Blocks'; $this->version = 1; parent::__construct(); $this->displayName = $this->l('Block MSN Messenger By Renova-Nova'); $this->description = $this->l('Add a block to MSN'); } function install() { if (!parent::install()) return false; if (!$this->registerHook('rightColumn') OR !$this->registerHook('leftColumn')) return false; return true; } /** **/ function hookRightColumn($params) { global $smarty; return $this->display(__FILE__, 'blockmsn.tpl'); } function hookLeftColumn($params) { return $this->hookRightColumn($params); }}?> Link to comment Share on other sites More sharing options...
MrBram Posted April 13, 2010 Share Posted April 13, 2010 Hola @JuanberrocNo hace falta cambiar nada de código. Desde backend en módulos/posiciones puedes cambiarlo facilmente.Saludos,Abraham. Link to comment Share on other sites More sharing options...
Juanberroc Posted April 13, 2010 Author Share Posted April 13, 2010 muchas gracias por tu ayuda! aún no puedo encontrar donde me dices...Hay un modulo que se llama backend? busque en modulos "posiciones" o algo parecido pero no lo encuentro Saludos!JC Link to comment Share on other sites More sharing options...
Juanberroc Posted April 13, 2010 Author Share Posted April 13, 2010 Listo ya quedó resuelto mcuhas gracias por tu atención en lo que te pueda ayudar Saludos cordiales JC Link to comment Share on other sites More sharing options...
MrBram Posted April 13, 2010 Share Posted April 13, 2010 Ok, estás en módulos dentro del backend (panel de administración), pues pincha arriba a la izquierda "posiciones" y luego "trasladar un módulo". Busca tu módulo y ponlo en right coumn, luego ahí en posiciones borralo de la columna izquierda.Edit: Me has adelantado por segundos jejeje Link to comment Share on other sites More sharing options...
pepocero Posted February 21, 2012 Share Posted February 21, 2012 tambien puedes utilizar el boton que dice "live edit" y arrastrar el modulo que quieras para cambiarlo de posicion.... Link to comment Share on other sites More sharing options...
Recommended Posts