123456789101112131415161718 |
- <?php
- namespace controllers\utils;
- use Ubiquity\orm\core\prepared\DAOPreparedQueryAll;
- trait FortunesAsyncTrait {
- protected static $pDao;
- public static function warmup() {
- self::$pDao = new DAOPreparedQueryAll('models\\Fortune');
- }
- public function initialize() {
- \Ubiquity\utils\http\UResponse::setContentType('text/html', 'utf-8');
- }
- }
|