mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-11 04:52:14 +09:00
Make placeholder for custom prefix support in the future
This commit is contained in:
parent
a5bc18f015
commit
57be6abc9d
2 changed files with 6 additions and 0 deletions
|
|
@ -136,6 +136,7 @@ return array(
|
||||||
'viewport' => 'width=device-width, initial-scale=1.0, user-scalable=yes',
|
'viewport' => 'width=device-width, initial-scale=1.0, user-scalable=yes',
|
||||||
),
|
),
|
||||||
'namespaces' => [],
|
'namespaces' => [],
|
||||||
|
'prefixes' => [],
|
||||||
'use_rewrite' => true,
|
'use_rewrite' => true,
|
||||||
'use_sso' => false,
|
'use_sso' => false,
|
||||||
'other' => array(),
|
'other' => array(),
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,11 @@ class Config
|
||||||
$GLOBALS['RX_NAMESPACES'] = self::$_config['namespaces'];
|
$GLOBALS['RX_NAMESPACES'] = self::$_config['namespaces'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!empty(self::$_config['prefixes']))
|
||||||
|
{
|
||||||
|
$GLOBALS['RX_PREFIXES'] = self::$_config['prefixes'];
|
||||||
|
}
|
||||||
|
|
||||||
return self::$_config;
|
return self::$_config;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue