is PHP allowed on the pages to be inserted
Installation and Configuration
Make sure you understand your eternal javascript before you try to add it to jamroom (I am assuming you understand Jamroom).
// $label can come in as an array
if (is_array($label)) {
$_tbs["{$mod}/{$view}"] = array(
'label' => (isset($_lng[$mod]["{$label['label']}"])) ? $_lng[$mod]["{$label['label']}"] : $label['label'],
'url' => "{$_conf['jrCore_base_url']}/{$url}/{$view}"
);
if (!isset($label['quota_check']) || $label['quota_check'] === true) {
// Check for specific field access
$fld = "quota_{$mod}_allowed";
if (isset($label['field']) && strlen($label['field']) > 0) {
$fld = $label['field'];
}
if (isset($_user[$fld]) && $_user[$fld] != 'on') {
// added this at line 741
unset($_tbs["{$mod}/{$view}"]);
continue;
}
}
}
// Setup our Subscription Browser
$_tmp = array(
'label' => 34,
'quota_check' => false
);
jrCore_register_module_feature('jrUser', 'account_tab', 'jrFoxyCart', 'subscription_browser', $_tmp);
// Setup the stream settings tab
$_tmp = array(
'label' => 1,
'quota_check' => true
);
jrCore_register_module_feature('jrUser', 'account_tab', 'ujLifeStreams', 'stream_settings', $_tmp);