* @package wombatSite
* @subpackage test
*/
include_once '../include/wbFactory.php';
wbFactory::configure();
$maker =& wbFactory::singleton( 'wbMake' );
$targets = array(
//'Menu',
'AdminMenu'
);
// run makers
if( $maker->make( $targets ) ) {
echo "Success!
";
}
$messages = $maker->getMsg();
echo "messages
"; print_r( $messages ); echo ""; wbDebugger::printMsg(); ?>