| Current Path : /proc/1908984/root/proc/self/root/proc/self/root/proc/2411249/cwd/ |
| Current File : //proc/1908984/root/proc/self/root/proc/self/root/proc/2411249/cwd/PageFlow.php.tar |
home/digilove/public_html/110/libraries/smartslider3/src/Framework/PageFlow.php 0000644 00000001151 15243162073 0023433 0 ustar 00 <?php
namespace Nextend\Framework;
class PageFlow {
public static function markApplicationEnd() {
Plugin::doAction('exit');
}
public static function exitApplication() {
self::markApplicationEnd();
exit;
}
public static function cleanOutputBuffers() {
$handlers = ob_list_handlers();
while (count($handlers) > 0 && $handlers[count($handlers) - 1] != 'ob_gzhandler' && $handlers[count($handlers) - 1] != 'zlib output compression') {
ob_end_clean();
$handlers = ob_list_handlers();
}
}
}