clipbucket/upload/plugins/custom_fields/admin/custom_field.php

12 lines
301 B
PHP
Raw Normal View History

2015-02-26 13:50:40 +00:00
<?php
/* Assigning page and subpage */
if(!defined('MAIN_PAGE')){
define('MAIN_PAGE', 'Custom Field');
}
if(!defined('SUB_PAGE')){
define('SUB_PAGE', 'View Custom Field');
}
$test="test";
assign('test',$test);
template_files(PLUG_DIR.'/customfield/admin/custom_field.html',true);
?>