<?php
/*
Plugin Name: Custom Pages
Description: Add custom pages to the Admin interface
Version: 1.00
*/


addAction('admin_postlogin', 'customPages',  null, 0);

function customPages() {

  $menu = @$_REQUEST['menu'];
  $custompage = @$_REQUEST['custompage'].'.php';
  if ($menu == 'custom' && file_exists('lib/menus/'.$custompage)) { showInterface($custompage); }
  
}



?>
