2010-09-15 16:55:54 +02:00
|
|
|
<?php
|
2010-09-27 12:48:53 +02:00
|
|
|
class links extends Module{
|
2010-09-20 11:40:27 +02:00
|
|
|
|
2010-09-27 12:48:53 +02:00
|
|
|
protected $moduleName;
|
|
|
|
protected $moduleTitle;
|
|
|
|
protected $pathToModule;
|
|
|
|
|
2010-09-20 11:40:27 +02:00
|
|
|
protected static $paramsList = array(
|
|
|
|
'visibility'
|
|
|
|
);
|
|
|
|
|
2010-09-21 16:00:04 +02:00
|
|
|
const LINKS_FILE = 'db/links.xml';
|
|
|
|
|
2010-09-20 11:40:27 +02:00
|
|
|
public $params = array();
|
2010-09-15 16:55:54 +02:00
|
|
|
|
|
|
|
public function __construct($params){
|
2010-09-27 12:48:53 +02:00
|
|
|
$this->moduleName = get_class();
|
|
|
|
$this->pathToModule = 'modules/'.$this->moduleName.'/';
|
2010-09-15 16:55:54 +02:00
|
|
|
$this->setParams($params);
|
2010-09-27 12:48:53 +02:00
|
|
|
echo '<script type="text/javascript" src="'.$this->pathToModule.'js/'.$this->moduleName.'.js"></script>
|
|
|
|
<link rel="stylesheet" href="'.$this->pathToModule.'css/'.$this->moduleName.'.css" type="text/css" />
|
2010-09-24 19:59:16 +02:00
|
|
|
<div style="display:none;"><div id="links-add-fancy"></div></div>
|
2010-09-21 16:00:04 +02:00
|
|
|
<div class="appscontainer">';
|
2010-09-27 12:48:53 +02:00
|
|
|
if($links_xml = simplexml_load_file($this->pathToModule.self::LINKS_FILE)){
|
2010-09-21 16:00:04 +02:00
|
|
|
$links = $links_xml->label;
|
|
|
|
foreach($links as $label){
|
2010-09-23 17:50:26 +02:00
|
|
|
//<span class="label">'.$label['id'].'</span>
|
|
|
|
echo '<ul class="iconlist" id="'.$label['id'].'">';
|
2010-09-21 16:00:04 +02:00
|
|
|
foreach($label->link as $link){
|
2010-09-23 17:50:26 +02:00
|
|
|
echo '<li class="iconitem" id="'.$link->title.'"><img src="images/interface/delete.png" class="deleteLink" /><a href="'.$link->url.'" class="'.$link->onclick.'"><img src="images/links/'.$link->img.'" /><br>'.$link->title.'</a></li>';
|
2010-09-21 16:00:04 +02:00
|
|
|
}
|
|
|
|
echo '</ul>
|
|
|
|
<hr>';
|
|
|
|
}
|
2010-09-21 17:09:31 +02:00
|
|
|
}else{
|
2010-09-27 12:48:53 +02:00
|
|
|
echo 'Can\'t find '.$this->pathToModule.self::LINKS_FILE;
|
2010-09-21 16:00:04 +02:00
|
|
|
}
|
2010-09-23 15:02:42 +02:00
|
|
|
echo '</div>';
|
2010-09-23 12:59:56 +02:00
|
|
|
|
2010-09-15 16:55:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function setParams($params){
|
|
|
|
$this->params = $params;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function start($params){
|
|
|
|
$links = new links($params);
|
|
|
|
}
|
2010-09-20 11:40:27 +02:00
|
|
|
|
2010-09-22 16:02:40 +02:00
|
|
|
public function setVisibility($visibility){
|
|
|
|
// Saving the position and z-index of the note:
|
|
|
|
$xmla = simplexml_load_file('../'.AccueilModules::CONFIG_FILE);
|
|
|
|
|
|
|
|
$path = $xmla->xpath("//item[@id='links']");
|
|
|
|
$path[0]->visibility = $visibility;
|
|
|
|
|
|
|
|
$xmla->asXML('../'.AccueilModules::CONFIG_FILE);
|
|
|
|
|
|
|
|
echo "ok";
|
|
|
|
}
|
|
|
|
|
2010-09-21 16:00:04 +02:00
|
|
|
public static function updateConfig($updated){
|
|
|
|
foreach ($updated as $what=>$withWhat){
|
|
|
|
if(in_array($what, self::$paramsList)){
|
|
|
|
call_user_func(array(get_class(), "set".ucfirst($what)), $withWhat);
|
|
|
|
}
|
|
|
|
}
|
2010-09-20 11:40:27 +02:00
|
|
|
}
|
2010-09-15 16:55:54 +02:00
|
|
|
}
|