Exemple #1
0
    /**
     * Verify that the Alfresco repository is currently setup and ready to be
     * used with Moodle (i.e. the needed directory structure is in place).
     *
     * @uses $CFG
     * @return bool True if setup, False otherwise.
     */
    public function verify_setup() {
        $valid_setup = parent::verify_setup();

        $this->cuuid = "mockcuuid";
        $this->ouuid = "mockouuid";
        $this->uuuid = "testuuid";
        $this->suuid = "mocksuuid";

        return $valid_setup;
    }