sforkowany z mirror/friendica
Add accessor for App->args in App and BaseModule
rodzic
5f80180b47
commit
11ad0acd28
10
src/App.php
10
src/App.php
|
@ -132,6 +132,16 @@ class App
|
||||||
*/
|
*/
|
||||||
private $process;
|
private $process;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the arguments of the query
|
||||||
|
*
|
||||||
|
* @return Arguments
|
||||||
|
*/
|
||||||
|
public function getArgs()
|
||||||
|
{
|
||||||
|
return $this->args;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the current config cache of this node
|
* Returns the current config cache of this node
|
||||||
*
|
*
|
||||||
|
|
|
@ -120,7 +120,7 @@ abstract class BaseModule extends BaseObject
|
||||||
$a = \get_app();
|
$a = \get_app();
|
||||||
|
|
||||||
$x = explode('.', $hash);
|
$x = explode('.', $hash);
|
||||||
if (time() > (IntVal($x[0]) + $max_livetime)) {
|
if (time() > (intval($x[0]) + $max_livetime)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -155,4 +155,12 @@ abstract class BaseModule extends BaseObject
|
||||||
throw new \Friendica\Network\HTTPException\ForbiddenException();
|
throw new \Friendica\Network\HTTPException\ForbiddenException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return App\Arguments
|
||||||
|
*/
|
||||||
|
protected static function getArgs()
|
||||||
|
{
|
||||||
|
return self::getApp()->getArgs();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue