Topic: Adding to pun_url
Will we have a standard way to add to this? as in pun_url()
Im using the following code at hook 'co_common' ... But dont think its ideal.
// Add Arcade URL rewriting scheme to standard URL rewriting scheme
if (file_exists(PUN_ROOT.'extensions/arcade/include/url/'.$pun_config['o_sef'].'.php'))
require PUN_ROOT.'extensions/arcade/include/url/'.$pun_config['o_sef'].'.php';
else
require PUN_ROOT.'extensions/arcade/include/url/Default.php';
I could have one file with all the different schemes in but that is even less efficient.