Jeedom Core

Deprecated

Table of Contents

core/class/ajax.class.php
core/class/log.class.php
core/class/scenario.class.php
core/com/shell.com.php

ajax.class.php

Line Element Reason
59 ajax::getToken()

Since version 4.4, authentication is handled differently

log.class.php

Line Element Reason
344 log::get()

v4.4 => removed in v4.6 (use log::getDelta() instead)

Note that log::get($_log, $_begin, $_nbLines) is equivalent to: $path = (!file_exists($_log) || !is_file($_log)) ? self::getPathToLog($_log) : $_log; if (!file_exists($path)) { return false; } $delta = self::getDelta($_log, $_begin, '', false, false, 0, $_nbLines); $arr = explode("\n", $delta['logText']); unset($arr[count($arr) - 1]); $res = array_reverse($arr);

scenario.class.php

Line Element Reason
1054 scenario::emptyCacheWidget()

don't use this function anymore, it is only here for backward compatibility

shell.com.php

Line Element Reason
114 com_shell::commandExist()

Replaced by com_shell::commandExists

Search results