1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 17:44:37 +02:00

Generated PHPDoc for all classes in e107_handlers where one was missing. toNumber() updated to always return int or float.

This commit is contained in:
Cameron
2022-04-04 10:54:24 -07:00
parent 813f2bf38f
commit 55980a29a8
104 changed files with 5498 additions and 1221 deletions

View File

@@ -32,24 +32,30 @@ class e_upgrade
/**
*
* @param string $curFolder - folder name of the plugin or theme to check
* @param string $curVersions - installed version of the plugin or theme.
* @param string $releaseUrl - url of the XML file in the above format.
* @param boolean $cache
* @param $dataArray
* @return $this
*/
public function setOptions($dataArray)
{
$this->_options = $dataArray;
return $this;
}
/**
* @param $key
* @param $default
* @return mixed
*/
public function getOption($key, $default = '')
{
return varset($this->_options[$key], $default);
}
/**
* @param $mode
* @param $cache
* @return void
*/
public function releaseCheck($mode='plugin', $cache=TRUE)
{
global $e107cache;
@@ -117,10 +123,12 @@ class e_upgrade
}
function checkAllPlugins()
/**
* @return void
*/
function checkAllPlugins()
{
$pref = e107::getPref();
$sql = e107::getDB();
@@ -136,6 +144,9 @@ class e_upgrade
}
}
/**
* @return void
*/
function checkSiteTheme()
{
$curTheme = e107::getPref('sitetheme');
@@ -146,7 +157,10 @@ class e_upgrade
$this->setOptions($options);
$this->releaseCheck('theme',FALSE);
}
/**
* @return void
*/
function listLangPacks()
{