Jump to content

Imprimir variable en consola de Chrome o Mozilla


Recommended Posts

Buenas.

 

Quería preguntaros cual es el comando para imprimir por consola el valor de una variable en prestashop por consola... para poder depurar bien el código.

 

Gracias

 

Te refieres a una variable smarty desde un TPL? Puedes hacer:

{$variable|@var_dump}
Link to comment
Share on other sites

pues lo utilizo así:

 
    public function printButton()
    {
        global $smarty;
        $texto = Configuration::get('BUTTON_TEXT');
        Tools::fd($texto, 'log');
        $smarty->assign( 'messageSmarty',$texto ); 
       
        return $this->display(__FILE__, $this->local_path.'views/templates/page.tpl');      
    }
 
    public function hookDisplayRightColumn()
    {
        return printButton();
    }
 
 
de tal manera que debería imprimir en la consola el valor de $texto pero no imprime nada, está todo bien escrito?
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...