action.php へのフルURLを挿入します。
NP_ActionURL.php
<?php
class NP_ActionURL extends NucleusPlugin{
function getName() {return 'Action URL';}
function getAuthor() {return 'akebia';}
function getURL() {return 'http://nyan.co.uk/akebia/item/228';}
function getVersion() {return '1.1';}
function getDescription(){return '<%ActionURL%>';}
function supportsFeature($f)
{switch($f){case 'SqlTablePrefix': return 1; default: return 0;}}
function a(){echo $GLOBALS['CONF']['ActionURL'];}
function doSkinVar(){$this->a();}
function doTemplateVar(){$this->a();}
function doTemplateCommentsVar(){$this->a();}
}
?>