Remove get_app() in favor of DI::app()

This commit is contained in:
nupplaPhil 2020-01-04 23:42:01 +01:00
parent 5d20cd7e16
commit f0eea6f875
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
26 changed files with 110 additions and 97 deletions

View file

@ -2220,7 +2220,7 @@ class Contact
{
$result = ['cid' => -1, 'success' => false, 'message' => ''];
$a = \get_app();
$a = DI::app();
// remove ajax junk, e.g. Twitter
$url = str_replace('/#!/', '/', $url);

View file

@ -105,7 +105,7 @@ class Mail
*/
public static function send($recipient = 0, $body = '', $subject = '', $replyto = '')
{
$a = \get_app();
$a = DI::app();
if (!$recipient) {
return -1;

View file

@ -461,7 +461,7 @@ class Photo
$micro = DI::baseUrl() . "/photo/" . $resource_id . "-6." . $Image->getExt() . $suffix;
// Remove the cached photo
$a = \get_app();
$a = DI::app();
$basepath = $a->getBasePath();
if (is_dir($basepath . "/photo")) {

View file

@ -568,7 +568,7 @@ class Profile
public static function getBirthdays()
{
$a = \get_app();
$a = DI::app();
$o = '';
if (!local_user() || DI::mode()->isMobile() || DI::mode()->isMobile()) {
@ -665,7 +665,7 @@ class Profile
public static function getEventsReminderHTML()
{
$a = \get_app();
$a = DI::app();
$o = '';
if (!local_user() || DI::mode()->isMobile() || DI::mode()->isMobile()) {
@ -1106,7 +1106,7 @@ class Profile
*/
public static function addVisitorCookieForHandle($handle)
{
$a = \get_app();
$a = DI::app();
// Try to find the public contact entry of the visitor.
$cid = Contact::getIdForURL($handle);
@ -1144,7 +1144,7 @@ class Profile
*/
public static function openWebAuthInit($token)
{
$a = \get_app();
$a = DI::app();
// Clean old OpenWebAuthToken entries.
OpenWebAuthToken::purge('owt', '3 MINUTE');