2017-11-16 18:05:41 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2017-11-19 21:50:49 +00:00
|
|
|
* @file src/BaseObject.php
|
2017-11-16 18:05:41 +00:00
|
|
|
*/
|
2017-11-19 21:50:49 +00:00
|
|
|
namespace Friendica;
|
2017-11-16 18:05:41 +00:00
|
|
|
|
2018-12-30 20:42:56 +00:00
|
|
|
require_once 'boot.php';
|
|
|
|
|
2019-02-05 20:54:55 +00:00
|
|
|
use Friendica\Network\HTTPException\InternalServerErrorException;
|
2018-12-30 20:42:56 +00:00
|
|
|
|
2017-11-16 18:05:41 +00:00
|
|
|
/**
|
|
|
|
* 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
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
2017-12-17 16:34:43 +00:00
|
|
|
* @return App
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2017-11-16 18:05:41 +00:00
|
|
|
*/
|
2017-11-19 21:50:49 +00:00
|
|
|
public static function getApp()
|
2017-11-16 18:05:41 +00:00
|
|
|
{
|
2018-06-26 00:44:35 +00:00
|
|
|
if (empty(self::$app)) {
|
2019-02-05 21:56:57 +00:00
|
|
|
throw new InternalServerErrorException('App isn\'t initialized.');
|
2017-11-16 18:05:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return self::$app;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the app
|
|
|
|
*
|
2018-11-01 12:44:47 +00:00
|
|
|
* @param App $app App
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return void
|
2017-11-16 18:05:41 +00:00
|
|
|
*/
|
2018-06-26 00:44:35 +00:00
|
|
|
public static function setApp(App $app)
|
2017-11-16 18:05:41 +00:00
|
|
|
{
|
|
|
|
self::$app = $app;
|
|
|
|
}
|
|
|
|
}
|