Exemplo n.º 1
0
/** Выводит блоки с новостями на страницу
 * @param count {natural} количество новостей
 * @return {string} @echo
 */
function writeNews($count = 2, $form = array())
{
    global $section;
    if (count($form) == 0) {
        $form = $section['loginForm'];
    }
    $r = array();
    if ($count > 0) {
        for ($i = 0; $i < count($form); ++$i) {
            $r[] = $form[$i];
        }
    }
    $r[] = "<div id=\"news\"" . ($count > 0 ? "" : " class=\"noside\"") . ">";
    $news = Api::query('*', 'news', $count, array('id' => 'desc'));
    for ($i = 0; $i < count($news); ++$i) {
        $temp = newsItem($news[$i]);
        for ($j = 0; $j < count($temp); ++$j) {
            $r[] = space(2) . $temp[$j];
        }
    }
    if ($count > 0) {
        $r[] = space(2) . "<a href=\"?page=news\" class=\"button lang\">Все новости</a>";
    }
    $r[] = "</div>";
    return $r;
}
Exemplo n.º 2
0
<?php

/************************************************************************
 *                                                                      *
 *  FreeSynd - a remake of the classic Bullfrog game "Syndicate".       *
 *                                                                      *
 *   Copyright (C) 2005,2006                                            *
 *      Stuart Bingë  <*****@*****.**>                               *
 *      Joost Peters  <*****@*****.**>                    *
 *                                                                      *
 *    This program is free software;  you can redistribute it and / or  *
 *  modify it  under the  terms of the  GNU General  Public License as  *
 *  published by the Free Software Foundation; either version 2 of the  *
 *  License, or (at your option) any later version.                     *
 *                                                                      *
 *    This program is  distributed in the hope that it will be useful,  *
 *  but WITHOUT  ANY WARRANTY;  without even  the implied  warranty of  *
 *  MERCHANTABILITY  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  *
 *  General Public License for more details.                            *
 *                                                                      *
 *    You can view the GNU  General Public License, online, at the GNU  *
 *  project's  web  site;  see <http://www.gnu.org/licenses/gpl.html>.  *
 *  The full text of the license is also included in the file COPYING.  *
 *                                                                      *
 ************************************************************************/
// $Id$
$title = 'News';
require_once 'include/common.php';
// The newsItem() signature is newsItem($title, $content, $submitter, $date);
newsItem('New development push', "We're currently gearing up for a renewed development effort in order to get\nthis project on track and hopefully get an initial release out the door. This\nupdated website is a first step - all existing content has been revised, the\ninterface has been streamlined, and the file format documentation has been\nsignificantly updated. Expect more soon!\n\nCurrently we've documented the map tile format for Syndicate and the sprite\nformat for both Syndicate and Syndicate Wars. We'll be constantly updating this\nwith additional formats - there are still several that we know the format of\nthat need documenting.", 'Stuart', '2005-01-31');
printFooter();