Jump to content

Override Tools.php


webjuice

Recommended Posts

Ciao a tutti,

ho un problema abbastanza strano, avrei la necessità di modificare la "struttura" dei titoli

senza andare a modificare il file Tools.php

 

Per fare ciò ho creato un file /override/classes/Tools.php con il seguente codice ma sembra che il codice non venga proprio eseguito

 

class Tools extends ToolsCore
{
public static function completeMetaTags($metaTags, $defaultValue)
{
 global $cookie;
 if (empty($metaTags['meta_title']))
  $metaTags['meta_title'] = "CIAO";
 if (empty($metaTags['meta_description']))
  $metaTags['meta_description'] = "CIAO";
 if (empty($metaTags['meta_keywords']))
  $metaTags['meta_keywords'] = "CIAO";
 return $metaTags;
}
}

 

A questo punto dovrei vedere "CIAO" su Titolo, description e keywords e inevce niente... acqua calda!

 

Il sito http://www.integratorieuropa.com/

 

Qualcuno mi sà spiegare perchè non funziona l'override di Tools.php ?

 

 

grazie in anticipo

Augusto

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...