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
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 20:15:25 +01:00
|
|
|
*
|
2017-12-17 17:34:43 +01:00
|
|
|
* @return App
|
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)) {
|
|
|
|
self::$app = new App(dirname(__DIR__));
|
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;
|
|
|
|
}
|
|
|
|
}
|