Quote:
Originally Posted by Opserty
Or:
PHP Code:
$globaltemplates[] = 'template1';
$globaltemplates[] = 'template2';
I think it looks more organised that way  Obviously only good for about 3-4 templates after which I prefer to go to Dismounted's method.
|
If you want it to look organised...
PHP Code:
$mytemplates = array(
'template1',
'template2'
);
$globaltemplates = array_merge($globaltemplates, $mytemplates);