X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=boot.php;h=1f503c908a6935c087bd1ef8de8c7ced72342473;hb=2fc81898dabafafbdc902bfae96c3c64a1fc0700;hp=d812724c7bd2b45bcff0a6797238eee58282b2fa;hpb=8b70ae6d46b9a62e052039181dd1dfe5229e0225;p=friendica.git diff --git a/boot.php b/boot.php index d812724c7b..1f503c908a 100644 --- a/boot.php +++ b/boot.php @@ -22,6 +22,7 @@ use Friendica\BaseObject; use Friendica\Core\Config; use Friendica\Core\PConfig; use Friendica\Core\Protocol; +use Friendica\Core\System; use Friendica\Database\DBA; use Friendica\Model\Contact; use Friendica\Util\BasePath; @@ -91,6 +92,13 @@ define('SSL_POLICY_FULL', 1); define('SSL_POLICY_SELFSIGN', 2); /* @}*/ +/** @deprecated since version 2019.03, please use \Friendica\Module\Register::CLOSED instead */ +define('REGISTER_CLOSED', \Friendica\Module\Register::CLOSED); +/** @deprecated since version 2019.03, please use \Friendica\Module\Register::APPROVE instead */ +define('REGISTER_APPROVE', \Friendica\Module\Register::APPROVE); +/** @deprecated since version 2019.03, please use \Friendica\Module\Register::OPEN instead */ +define('REGISTER_OPEN', \Friendica\Module\Register::OPEN); + /** * @name CP * @@ -634,7 +642,7 @@ function get_temppath() $temppath = Config::get("system", "temppath"); - if (($temppath != "") && BasePath::isDirectoryUsable($temppath)) { + if (($temppath != "") && System::isDirectoryUsable($temppath)) { // We have a temp path and it is usable return BasePath::getRealPath($temppath); } @@ -643,7 +651,7 @@ function get_temppath() $temppath = sys_get_temp_dir(); // Check if it is usable - if (($temppath != "") && BasePath::isDirectoryUsable($temppath)) { + if (($temppath != "") && System::isDirectoryUsable($temppath)) { // Always store the real path, not the path through symlinks $temppath = BasePath::getRealPath($temppath); @@ -654,7 +662,7 @@ function get_temppath() mkdir($new_temppath); } - if (BasePath::isDirectoryUsable($new_temppath)) { + if (System::isDirectoryUsable($new_temppath)) { // The new path is usable, we are happy Config::set("system", "temppath", $new_temppath); return $new_temppath; @@ -736,7 +744,7 @@ function get_itemcachepath() } $itemcache = Config::get('system', 'itemcache'); - if (($itemcache != "") && BasePath::isDirectoryUsable($itemcache)) { + if (($itemcache != "") && System::isDirectoryUsable($itemcache)) { return BasePath::getRealPath($itemcache); } @@ -748,7 +756,7 @@ function get_itemcachepath() mkdir($itemcache); } - if (BasePath::isDirectoryUsable($itemcache)) { + if (System::isDirectoryUsable($itemcache)) { Config::set("system", "itemcache", $itemcache); return $itemcache; } @@ -764,7 +772,7 @@ function get_itemcachepath() function get_spoolpath() { $spoolpath = Config::get('system', 'spoolpath'); - if (($spoolpath != "") && BasePath::isDirectoryUsable($spoolpath)) { + if (($spoolpath != "") && System::isDirectoryUsable($spoolpath)) { // We have a spool path and it is usable return $spoolpath; } @@ -779,7 +787,7 @@ function get_spoolpath() mkdir($spoolpath); } - if (BasePath::isDirectoryUsable($spoolpath)) { + if (System::isDirectoryUsable($spoolpath)) { // The new path is usable, we are happy Config::set("system", "spoolpath", $spoolpath); return $spoolpath;