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