public static function getUserData()
    {
        $user = MMUsers::getCurrentUserObject();

        return array(
            'UID' => MMeLearningList::getCountryPrefixForElearning() . $user->attribute( 'uuid' ),
            'CID' => CertificatesWebservice::getProperCountryId( $user ),
        );
    }
    /**
     * @return bool
     */
    public function htmlBuildResult()
    {
        if($this->isFull)
        {
            $this->pushResult('common_template', 'learning_needs_assessment');
        }

        parent::htmlBuildResult();

        return true;
    }