class_Responseable.php
Go to the documentation of this file.00001 <?php
00024 interface Responseable extends FrameworkInterface {
00031 function setResponseStatus ($status);
00032
00040 function addHeader ($name, $value);
00041
00048 function writeToBody ($output);
00049
00059 function flushBuffer ($force = false);
00060
00068 function addFatalMessage ($messageId);
00069
00079 function addCookie ($cookieName, $cookieValue, $encrypted = false);
00080
00089 function redirectToConfiguredUrl ($configEntry);
00090
00097 function expireCookie ($cookieName);
00098
00105 function refreshCookie ($cookieName);
00106 }
00107
00108
00109 ?>