pathToModule.'js/'.$this->moduleName.'.js">
				';
		if($xmla = simplexml_load_file($this->pathToModule.self::TODO_FILE)){
			$this->setToken($xmla->token);
			$this->setProjectName($xmla->name);
			$this->setProjectId($xmla->id);
			echo '
';
			if($this->token == null || $this->project_id == null)
				echo 'Impossible de trouver votre configuration. 
Cliquez ici pour la mettre en place.
 ';
			else{
				$token 	= $xmla->token;
				$id		= $xmla->id;
				echo '';
			}
			echo '';
		}else{
			echo 'baaaaad persistance...';
		}	
	}
	
	private function setToken($token){
		if($token == '' || $token == null)
			$this->token = null;
		else
			$this->token = $token;
	}
	
	private function setProjectName($name){
		if($name == '' || $name == null)
			$this->project_name = null;
		else
			$this->project_name = $name;
	}
	
	private function setProjectId($id){
		if($id == '' || $id == null)
			$this->project_id = null;
		else
			$this->project_id = $id;
	}
}