Example #1
0
 public function routeStartup(Zend_Controller_Request_Abstract $request)
 {
     if (Strass::onDevelopment()) {
         $level = E_ALL & ~(E_STRICT | E_DEPRECATED);
         ini_set('display_errors', 1);
     } else {
         $level = 0;
         ini_set('display_errors', 0);
     }
     Orror::init($level, array($this, 'errorHandler'), array($this, 'kill'), false);
 }
Example #2
0
<?php

$_ENV['STRASS_UNIT_TEST'] = 1;
putenv('STRASS_UNIT_TEST=1');
$paths = explode(':', get_include_path());
array_shift($paths);
array_unshift($paths, '.', dirname(dirname(__FILE__)) . '/../include');
set_include_path(implode(':', $paths));
require_once 'Strass.php';
require_once 'Orror.php';
chdir(realpath(getenv('STRASS_ROOT')));
Strass::bootstrap();
Orror::init(E_ALL | E_STRICT);
Strass_Cache::setup();
Strass_Db::setup();
Zend_Registry::set('config', new Zend_Config(array(), true));