?>
?index=vue_parametres"><i class="fa fa-gear fa-fw"></i> Paramètres</a>
                        </li>
                        <li class="divider"></li>
                        <li><a href="<?php 
echo INDEX;
?>
?index=deconnexion"><i class="fa fa-sign-out fa-fw"></i> Se Deconnecter</a>
                        </li>
                    </ul>
                </li>
            </ul>

            <?php 
$id = id($_SESSION["pseudo"]);
$verif_blog = blog($id);
$status_blog = status_blog($id);
$verif_star = verif_star($id);
$verif_demande = verif_demande_star($id);
?>
            <div class="navbar-default sidebar" role="navigation">
                <div class="sidebar-nav navbar-collapse">
                    <ul class="nav" id="side-menu">
                        <li class="sidebar-search">
                            <div class="input-group custom-search-form">
                                <input type="text" class="form-control" placeholder="Recherche...">
                                <span class="input-group-btn">
                                <button class="btn btn-default" type="button">
                                    <i class="fa fa-search"></i>
                                </button>
                            </span>
    ?>
                            >
                        </form> 
					</td>
					<td>
						<form action="<?php 
    echo INDEX;
    ?>
?index=vue_admin" method="post">
                            <input class="form-control"  id="id_relais" type="hidden" name="id_relais" value="<?php 
    echo $result['id_relais'];
    ?>
" required>
                            <input type="submit" value="refuser" class="panel panel-red" name="refuser_relais"
                                <?php 
    $verif_blog = blog($result['id_utilisateur']);
    if ($verif_blog == "supprimer") {
        echo "disabled='disabled'";
    }
    ?>
                            >
                        </form> 
                    </td>
                  </tr>
                  <?php 
}
?>
                  </tbody>
                </table>
				</div>
				</div><!-- /.modal-content -->
Exemple #3
0
			</div>
			
			<div id="footer">
				<h3>Latest News</h3>
				<?php 
echo blog('template= front_blog.html, limit= 4');
?>
			</div>
			
			<div id="powered-by">
				Powered by <a href="http://www.secretarycms.com">Secretary</a>
			</div>
		</div>
	</body>
</html>
Exemple #4
0
    <?php 
    }
    ?>

    <?php 
    if (get_field('show_blog')) {
        ?>
      <?php 
        /* Swoosh */
        if (get_field('show_calendar')) {
            partial('swoosh-4');
        }
        ?>

      <?php 
        blog();
        ?>
    <?php 
    }
    ?>

    <?php 
    /* Swoosh */
    if ((get_field('show_post_list') || get_field('show_large_post_list')) && !get_field('show_intro_icons')) {
        echo partial('swoosh-2');
    }
    ?>

    <?php 
    if (get_field('show_post_list')) {
        ?>
Exemple #5
0
function show_post()
{
    if (postSelected() == false) {
        return;
    } else {
        $settings = prepare_settings("show= big, id= " . selectedPost());
        echo blog($settings);
    }
}