85 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
class blogs extends Module {
 | 
						|
 | 
						|
	protected static $paramsList = array(
 | 
						|
		'visibility',
 | 
						|
		'x',
 | 
						|
		'y'
 | 
						|
	);
 | 
						|
	public $params = array();
 | 
						|
	
 | 
						|
	public function __construct($params){
 | 
						|
		$this->setParams($params);
 | 
						|
		require('blogs_last_post.php');
 | 
						|
		echo '<script type="text/javascript" src="js/jquery.blogs.js"></script>
 | 
						|
				<div id="blogs" style="top:'.$params['y'].'; left :'.$params['x'].';"></div>';
 | 
						|
		echo '<a href="#blogLinksManager" id="blog-links-manager"><img src="images/interface/blogs_edit.png" /></a>';
 | 
						|
		echo '<div style="display:none;">
 | 
						|
				<div id="blogLinksManager">
 | 
						|
				<h3>Blogs Management</h3><br/>
 | 
						|
				<h4>Delete Site feed</h4>
 | 
						|
				<ul>';
 | 
						|
		$blogs = new Blogs_last_post();
 | 
						|
		foreach($blogs->getLinks() as $link)
 | 
						|
			echo '<li>'.$link['url'].' <img src="images/interface/delete.png" id="link-'.$link['name'].'"/></li>';
 | 
						|
		echo '</ul>
 | 
						|
				<h4>Insert Site feed</h4>
 | 
						|
				<form action="addSite.php" method="POST">
 | 
						|
				<input type="text" id="newLink" name="newLink" value="url" />
 | 
						|
				<input type="submit" id="link-submit" class="green-button" value="Ajouter"></input>
 | 
						|
				</form>
 | 
						|
				</div>
 | 
						|
				</div>';
 | 
						|
	}
 | 
						|
	
 | 
						|
	private function setParams($params){
 | 
						|
		$this->params = $params;
 | 
						|
	}
 | 
						|
	
 | 
						|
	public static function start($params){
 | 
						|
		$blogs = new blogs($params);
 | 
						|
	}
 | 
						|
	
 | 
						|
	public function setX($x){
 | 
						|
		$xmla = simplexml_load_file('../'.AccueilModules::CONFIG_FILE);
 | 
						|
 | 
						|
		$path = $xmla->xpath("//item[@id='blogs']"); 
 | 
						|
		$path[0]->x = $x;
 | 
						|
		
 | 
						|
		$xmla->asXML('../'.AccueilModules::CONFIG_FILE);
 | 
						|
		
 | 
						|
		echo "ok";
 | 
						|
	}
 | 
						|
	
 | 
						|
	public function setY($y){
 | 
						|
		$xmla = simplexml_load_file('../'.AccueilModules::CONFIG_FILE);
 | 
						|
 | 
						|
		$path = $xmla->xpath("//item[@id='blogs']"); 
 | 
						|
		$path[0]->y = $y;
 | 
						|
		
 | 
						|
		$xmla->asXML('../'.AccueilModules::CONFIG_FILE);
 | 
						|
		
 | 
						|
		echo "ok";
 | 
						|
	}
 | 
						|
	
 | 
						|
	public function setVisibility($visibility){
 | 
						|
		$xmla = simplexml_load_file('../'.AccueilModules::CONFIG_FILE);
 | 
						|
 | 
						|
		$path = $xmla->xpath("//item[@id='blogs']"); 
 | 
						|
		$path[0]->visibility = $visibility;
 | 
						|
		
 | 
						|
		$xmla->asXML('../'.AccueilModules::CONFIG_FILE);
 | 
						|
		
 | 
						|
		echo "ok";
 | 
						|
	}
 | 
						|
	
 | 
						|
	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);
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
	
 | 
						|
 | 
						|
} |