Exemplo n.º 1
0
    /**
     * @return string The task results for already complete tasks
     */
    public function get_results()
    {
        $intDleUsersCount = $this->get_process_objects_count();
        $intWpUsersCount = WpUsers::CountAll();
        $strResults = <<<RESULT
\t\t<li><strong>{$this->intUserCount}</strong> users from <strong>{$intDleUsersCount}</strong> converted. The wordpress database already has <strong>{$intWpUsersCount}</strong> users.</li>
RESULT;
        return $strResults;
    }