Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:<?php
/*
Extension Name: Change Tab
Extension Url: n/a
Description: Changes the current tab
Version: 0.1
Author: Timothy Walters Kleinert (aka timfire)
Author Url: N/A
*/
if ($Context->SelfUrl == 'index.php' || $Context->SelfUrl == 'comments.php' ) {
function ChangeTab(&$Menu) {
$Menu->CurrentTab = 'categories';
}
$Context->AddToDelegate('Menu', 'PreRender', 'ChangeTab');
}
?>1 to 3 of 3