2010-09-15 16:55:54 +02:00
|
|
|
<?php
|
|
|
|
class blogs {
|
|
|
|
private $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>';
|
|
|
|
echo '<a href="#blogLinksManager" id="blog-links-manager">Manage blog links</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)
|
2010-09-15 17:55:18 +02:00
|
|
|
echo '<li>'.$link['url'].' <img src="images/interface/delete.png" id="link-'.$link['name'].'"/></li>';
|
2010-09-15 16:55:54 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|