class_ManageableApplication.php
Go to the documentation of this file.00001 <?php
00029 interface ManageableApplication extends FrameworkInterface {
00035 function getAppVersion ();
00042 function setAppVersion ($appVersion);
00043
00049 function getAppName ();
00050
00057 function setAppName ($appName);
00058
00064 function getAppShortName ();
00065
00072 function setAppShortName ($shortName);
00073
00079 function getMasterTemplate ();
00080
00086 function entryPoint ();
00087
00095 function handleFatalMessages (array $messageList);
00096 }
00097
00098
00099 ?>