2017-11-16 19:05:41 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2017-11-19 22:50:49 +01:00
|
|
|
* @file src/BaseObject.php
|
2017-11-16 19:05:41 +01:00
|
|
|
*/
|
2017-11-19 22:50:49 +01:00
|
|
|
namespace Friendica;
|
2017-11-16 19:05:41 +01:00
|
|
|
|
2019-03-10 05:21:19 +01:00
|
|
|
require_once __DIR__ . '/../boot.php';
|
2018-12-30 21:42:56 +01:00
|
|
|
|
2019-02-05 21:54:55 +01:00
|
|
|
use Friendica\Network\HTTPException\InternalServerErrorException;
|
2018-12-30 21:42:56 +01:00
|
|
|
|
2017-11-16 19:05:41 +01:00
|
|
|
/**
|
|
|
|
* Basic object
|
|
|
|
*
|
|
|
|
* Contains what is useful to any object
|
|
|
|
*/
|
|
|
|
class BaseObject
|
|
|
|
{
|
2019-03-26 22:04:31 +01:00
|
|
|
/**
|
|
|
|
* @var App
|
|
|
|
*/
|
2017-11-16 19:05:41 +01:00
|
|
|
private static $app = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the app
|
|
|
|
*
|
|
|
|
* Same as get_app from boot.php
|
2017-11-19 20:15:25 +01:00
|
|
|
*
|
2017-12-17 17:34:43 +01:00
|
|
|
* @return App
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2017-11-16 19:05:41 +01:00
|
|
|
*/
|
2017-11-19 22:50:49 +01:00
|
|
|
public static function getApp()
|
2017-11-16 19:05:41 +01:00
|
|
|
{
|
2018-06-26 02:44:35 +02:00
|
|
|
if (empty(self::$app)) {
|
2019-02-05 22:56:57 +01:00
|
|
|
throw new InternalServerErrorException('App isn\'t initialized.');
|
2017-11-16 19:05:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return self::$app;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the app
|
|
|
|
*
|
2018-11-01 13:44:47 +01:00
|
|
|
* @param App $app App
|
2017-11-19 20:15:25 +01:00
|
|
|
*
|
|
|
|
* @return void
|
2017-11-16 19:05:41 +01:00
|
|
|
*/
|
2018-06-26 02:44:35 +02:00
|
|
|
public static function setApp(App $app)
|
2017-11-16 19:05:41 +01:00
|
|
|
{
|
|
|
|
self::$app = $app;
|
|
|
|
}
|
|
|
|
}
|