Horde_LoginTasks::displayTasks PHP Method

displayTasks() public method

This is the function called from the login tasks page every time it is loaded.
public displayTasks ( ) : array
return array The list of tasks that need to be displayed.
    public function displayTasks()
    {
        if (!isset($this->_tasklist) || $this->_tasklist === true) {
            return;
        }
        return $this->_tasklist->needDisplay(true);
    }