| [610] | 1 | <?php |
|---|
| 2 | |
|---|
| [866] | 3 | /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ |
|---|
| 4 | |
|---|
| 5 | // +-------------------------------------------------------------------+ |
|---|
| 6 | // | WiFiDog Authentication Server | |
|---|
| 7 | // | ============================= | |
|---|
| 8 | // | | |
|---|
| 9 | // | The WiFiDog Authentication Server is part of the WiFiDog captive | |
|---|
| 10 | // | portal suite. | |
|---|
| 11 | // +-------------------------------------------------------------------+ |
|---|
| 12 | // | PHP version 5 required. | |
|---|
| 13 | // +-------------------------------------------------------------------+ |
|---|
| 14 | // | Homepage: http://www.wifidog.org/ | |
|---|
| 15 | // | Source Forge: http://sourceforge.net/projects/wifidog/ | |
|---|
| 16 | // +-------------------------------------------------------------------+ |
|---|
| 17 | // | This program is free software; you can redistribute it and/or | |
|---|
| 18 | // | modify it under the terms of the GNU General Public License as | |
|---|
| 19 | // | published by the Free Software Foundation; either version 2 of | |
|---|
| 20 | // | the License, or (at your option) any later version. | |
|---|
| 21 | // | | |
|---|
| 22 | // | This program is distributed in the hope that it will be useful, | |
|---|
| 23 | // | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
|---|
| 24 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
|---|
| 25 | // | GNU General Public License for more details. | |
|---|
| 26 | // | | |
|---|
| 27 | // | You should have received a copy of the GNU General Public License | |
|---|
| 28 | // | along with this program; if not, contact: | |
|---|
| 29 | // | | |
|---|
| 30 | // | Free Software Foundation Voice: +1-617-542-5942 | |
|---|
| 31 | // | 59 Temple Place - Suite 330 Fax: +1-617-542-2652 | |
|---|
| 32 | // | Boston, MA 02111-1307, USA gnu@gnu.org | |
|---|
| 33 | // | | |
|---|
| 34 | // +-------------------------------------------------------------------+ |
|---|
| 35 | |
|---|
| 36 | /** |
|---|
| 37 | * @package WiFiDogAuthServer |
|---|
| 38 | * @author Francois Proulx <francois.proulx@gmail.com> |
|---|
| [916] | 39 | * @copyright 2005-2006 Francois Proulx, Technologies Coeus inc. |
|---|
| 40 | * @version Subversion $Id$ |
|---|
| 41 | * @link http://www.wifidog.org/ |
|---|
| [866] | 42 | */ |
|---|
| 43 | |
|---|
| [916] | 44 | /** |
|---|
| 45 | * Load required files |
|---|
| 46 | */ |
|---|
| [874] | 47 | require_once('../../include/common.php'); |
|---|
| [866] | 48 | |
|---|
| [874] | 49 | require_once('include/common_interface.php'); |
|---|
| 50 | require_once('classes/MainUI.php'); |
|---|
| 51 | require_once('classes/Content/PatternLanguage.php'); |
|---|
| [610] | 52 | |
|---|
| [651] | 53 | // This trick is done to allow displaying of Pattern Language right away if there is only one available. |
|---|
| 54 | if(!empty($_REQUEST['content_id'])) |
|---|
| 55 | { |
|---|
| [866] | 56 | $content_id = $_REQUEST['content_id']; |
|---|
| 57 | $pattern_language = PatternLanguage::getObject($content_id); |
|---|
| [651] | 58 | } |
|---|
| 59 | else |
|---|
| 60 | { |
|---|
| [866] | 61 | $content_id = ""; |
|---|
| 62 | $pattern_languages = PatternLanguage :: getAllContent(); |
|---|
| 63 | if(count($pattern_languages) >= 1) |
|---|
| 64 | $pattern_language = $pattern_languages[0]; |
|---|
| 65 | else |
|---|
| 66 | exit; |
|---|
| [651] | 67 | } |
|---|
| [866] | 68 | |
|---|
| [610] | 69 | // The Pattern Language toolbar |
|---|
| [651] | 70 | $tool_html = "<h1>{$pattern_language->getTitle()->__toString()}</h1>"; |
|---|
| [610] | 71 | $tool_html .= '<ul class="pattern_language_menu">'."\n"; |
|---|
| 72 | $gw_id = $session->get(SESS_GW_ID_VAR); |
|---|
| 73 | if(!empty($gw_id)) |
|---|
| 74 | $tool_html .= "<li><a href='/portal/?gw_id=$gw_id'>"._("Go back to this hotspot portal page")."</a></li>"; |
|---|
| [651] | 75 | $tool_html .= '<li><a href="'.BASE_SSL_PATH.'content/PatternLanguage/index.php?content_id='.$content_id.'">'._("About Pattern Language").'</a><br>'."\n"; |
|---|
| 76 | $tool_html .= '<li><a href="'.BASE_SSL_PATH.'content/PatternLanguage/narrative.php?content_id='.$content_id.'">'._("Read narrative").'</a><br>'."\n"; |
|---|
| 77 | $tool_html .= '<li><a href="'.BASE_SSL_PATH.'content/PatternLanguage/archives.php?content_id='.$content_id.'">'._("Archives").'</a><br>'."\n"; |
|---|
| 78 | $tool_html .= '<li><a href="'.BASE_SSL_PATH.'content/PatternLanguage/hotspots.php?content_id='.$content_id.'">'._("Participating hotspots").'</a><br>'."\n"; |
|---|
| 79 | $tool_html .= '<li><a href="'.BASE_SSL_PATH.'content/PatternLanguage/subscription.php?content_id='.$content_id.'">'._("Subscription").'</a><br>'."\n"; |
|---|
| [610] | 80 | $tool_html .= '</ul>'."\n"; |
|---|
| 81 | |
|---|
| 82 | $tool_html .= "<div class='pattern_language_credits'>"; |
|---|
| [651] | 83 | $tool_html .= $pattern_language->getSponsorInfo()->__toString(); |
|---|
| [610] | 84 | $tool_html .= "</div>"; |
|---|
| 85 | |
|---|
| 86 | // Body |
|---|
| [916] | 87 | $body_html = "<img src='".BASE_SSL_PATH."images/PatternLanguage/header.gif'>\n"; |
|---|
| [651] | 88 | $body_html .= "<h1>"._("About Pattern Language")."</h1>"; |
|---|
| [610] | 89 | $body_html .= "<div class='pattern_language_body'>"; |
|---|
| [651] | 90 | $body_html .= $pattern_language->getLongDescription()->__toString(); |
|---|
| [610] | 91 | $body_html .= "</div>"; |
|---|
| 92 | |
|---|
| 93 | |
|---|
| 94 | $ui=new MainUI(); |
|---|
| [1009] | 95 | $ui->appendContent('left_area_middle', $tool_html); |
|---|
| [610] | 96 | $ui->setTitle(_("Pattern Language - About")); |
|---|
| [1009] | 97 | $ui->appendContent('main_area_middle', $body_html); |
|---|
| [610] | 98 | $ui->display(); |
|---|
| 99 | |
|---|
| [866] | 100 | /* |
|---|
| 101 | * Local variables: |
|---|
| 102 | * tab-width: 4 |
|---|
| 103 | * c-basic-offset: 4 |
|---|
| 104 | * c-hanging-comment-ender-p: nil |
|---|
| 105 | * End: |
|---|
| 106 | */ |
|---|
| 107 | |
|---|
| 108 | ?> |
|---|