<%adminurl%>のテンプレートでも使えるものです。
NP_AdminURL.php
<?php
class NP_AdminURL extends NucleusPlugin{
function getName() {return 'Admin URL';}
function getAuthor() {return 'akebia';}
function getURL() {return 'http://nyan.co.uk/akebia/item/226';}
function getVersion() {return '1.1';}
function getDescription(){return '<%AdminURL%>';}
function supportsFeature($f)
{switch($f){case 'SqlTablePrefix': return 1; default: return 0;}}
function a(){echo $GLOBALS['CONF']['AdminURL'];}
function doSkinVar(){$this->a();}
function doTemplateVar(){$this->a();}
function doTemplateCommentsVar(){$this->a();}
}
?>