vc php8
This commit is contained in:
parent
c3639a22fb
commit
92186aa15f
|
@ -166,7 +166,7 @@ function safe_url_extraclean($string, $default_string='')
|
|||
* @param string $searchHandler Pattern of files to match.
|
||||
* @param boolean $return Whether to print or return the list.
|
||||
*
|
||||
* @return string he list of files if $return parameter is true.
|
||||
* @return array the list of files if $return parameter is true.
|
||||
*/
|
||||
function list_files($directory, $stringSearch, $searchHandler, $return=false)
|
||||
{
|
||||
|
|
|
@ -2199,7 +2199,7 @@ class Item extends CachedModel
|
|||
*
|
||||
* @return array Array with default values.
|
||||
*/
|
||||
public function getDefaultGeneralValues(array $values): array
|
||||
public static function getDefaultGeneralValues(array $values): array
|
||||
{
|
||||
global $config;
|
||||
|
||||
|
@ -2243,7 +2243,7 @@ class Item extends CachedModel
|
|||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getListImagesVC(?bool $service=false):array
|
||||
public static function getListImagesVC(?bool $service=false):array
|
||||
{
|
||||
global $config;
|
||||
|
||||
|
@ -2367,7 +2367,7 @@ class Item extends CachedModel
|
|||
*
|
||||
* @return array Inputs.
|
||||
*/
|
||||
public function inputsLinkedVisualConsole(array $values):array
|
||||
public static function inputsLinkedVisualConsole(array $values):array
|
||||
{
|
||||
// LinkConsoleInputGroup.
|
||||
$fields = self::getAllVisualConsole($values['vCId']);
|
||||
|
|
Loading…
Reference in New Issue