friendica/src/BaseObject.php

49 lines
669 B
PHP
Raw Normal View History

<?php
/**
* @file src/BaseObject.php
*/
namespace Friendica;
2018-12-30 21:42:56 +01:00
require_once 'boot.php';
2018-12-30 21:42:56 +01:00
use Friendica\Util\LoggerFactory;
/**
* Basic object
*
* Contains what is useful to any object
*/
class BaseObject
{
private static $app = null;
/**
* Get the app
*
* Same as get_app from boot.php
*
* @return App
*/
public static function getApp()
{
2018-06-26 02:44:35 +02:00
if (empty(self::$app)) {
2018-12-30 21:42:56 +01:00
$logger = $logger = LoggerFactory::create('app');
self::$app = new App(dirname(__DIR__), $logger);
}
return self::$app;
}
/**
* Set the app
*
2018-11-01 13:44:47 +01:00
* @param App $app App
*
* @return void
*/
2018-06-26 02:44:35 +02:00
public static function setApp(App $app)
{
self::$app = $app;
}
}