Access the table 'sites_options'
How to quickly access the data from the table 'sites_options' ?
It is possible to access the data from the table 'sites_options' - by-site basis without the need to go through the method getOne.
$this->conf['sites_options'];
It is a shortcut. This is equivalent to executing the method getOne with these parameters :
array('id_site'=>ID_SITE);
Example
The following example will retrieve the data corresponding to the field 'facebook_link' in the table 'sites_options'.
$this->conf['sites_options']['facebook_link'];