OSDN Git Service

NP_Moblog v1.17
[nucleus-jp/nucleus-plugins.git] / trunk / NP_Moblog / moblog / index.php
index 364ce7f..c2638ac 100644 (file)
-<?php
-// vim: tabstop=2:shiftwidth=2
-
-/**
-  * index.php ($Revision: 1.1 $)
-  * 
-  * by hsur ( http://blog.cles.jp/np_cles )
-  * $Id: index.php,v 1.1 2008-05-04 07:04:50 hsur Exp $
-*/
-
-/*
-  * Copyright (C) 2004-2006 cles. All rights reserved.
-  *
-  * 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 should have received a copy of the GNU General Public License
-  * along with this program; if not, write to the Free Software
-  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
-  * 
-  * In addition, as a special exception, cles( http://blog.cles.jp/np_cles ) gives
-  * permission to link the code of this program with those files in the PEAR
-  * library that are licensed under the PHP License (or with modified versions
-  * of those files that use the same license as those files), and distribute
-  * linked combinations including the two. You must obey the GNU General Public
-  * License in all respects for all of the code used other than those files in
-  * the PEAR library that are licensed under the PHP License. If you modify
-  * this file, you may extend this exception to your version of the file,
-  * but you are not obligated to do so. If you do not wish to do so, delete
-  * this exception statement from your version.
-*/
-
-$strRel = '../../../';
-include ($strRel.'config.php');
-include ($DIR_LIBS.'PLUGINADMIN.php');
-
-require_once($DIR_PLUGINS . 'sharedlibs/sharedlibs.php');
-require_once('cles/Feedback.php');
-
-$required = '4.3.0';
-if( ! version_compare(phpversion() , $required , '>=') ){
-       ACTIONLOG :: add(WARNING, 'NP_MoblogはPHP>=4.3.0であることが必要です。');
-}
-
-if ($blogid) {
-       $isblogadmin = $member->isBlogAdmin($blogid);
-} else
-       $isblogadmin = 0;
-
-if (!$member->isLoggedIn()) {
-       $oPluginAdmin = new PluginAdmin('Moblog');
-       $oPluginAdmin->start();
-       echo "<p>ログインが必要です</p>";
-       $oPluginAdmin->end();
-       exit;
-}
-
-if (!($member->isAdmin() || $isblogadmin)) {
-       $oPluginAdmin = new PluginAdmin('Moblog');
-       $oPluginAdmin->start();
-       echo "<p>"._ERROR_DISALLOWED."</p>";
-       $oPluginAdmin->end();
-       exit;
-}
-
-if (isset ($_GET['page'])) {
-       $action = getVar('page');
-}
-if (isset ($_POST['page'])) {
-       $action = getVar('page');
-}
-
-// create the admin area page
-$oPluginAdmin = new PluginAdmin('Moblog');
-$oPluginAdmin->start();
-$fb =& new cles_Feedback($oPluginAdmin);
-
-// menu
-echo "<h2>Moblog menu</h2>\n";
-echo "<ul>\n";
-echo "<li><a href=\"".serverVar('PHP_SELF')."?page=report\"><span style=\"font-weight:bold; color:red\">" . $fb->getMenuStr() . "</span></a></li>\n";
-echo "</ul>\n";
-
-//action
-switch ($action) {
-       case 'report' :
-               $fb->printForm();
-               break;
-
-       default :
-               break;
-}
-
-echo "<br />";
-
-$oPluginAdmin->end();
+<?php\r
+// vim: tabstop=2:shiftwidth=2\r
+\r
+/**\r
+  * index.php ($Revision: 1.21 $)\r
+  * \r
+  * by hsur ( http://blog.cles.jp/np_cles )\r
+  * $Id: index.php,v 1.21 2010/06/06 11:44:19 hsur Exp $\r
+*/\r
+\r
+/*\r
+  * Copyright (C) 2004-2010 cles. All rights reserved.\r
+  *\r
+  * This program is free software; you can redistribute it and/or\r
+  * modify it under the terms of the GNU General Public License\r
+  * as published by the Free Software Foundation; either version 2\r
+  * of the License, or (at your option) any later version.\r
+  * \r
+  * This program is distributed in the hope that it will be useful,\r
+  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+  * GNU General Public License for more details.\r
+  * \r
+  * You should have received a copy of the GNU General Public License\r
+  * along with this program; if not, write to the Free Software\r
+  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA\r
+  * \r
+  * In addition, as a special exception, cles( http://blog.cles.jp/np_cles ) gives\r
+  * permission to link the code of this program with those files in the PEAR\r
+  * library that are licensed under the PHP License (or with modified versions\r
+  * of those files that use the same license as those files), and distribute\r
+  * linked combinations including the two. You must obey the GNU General Public\r
+  * License in all respects for all of the code used other than those files in\r
+  * the PEAR library that are licensed under the PHP License. If you modify\r
+  * this file, you may extend this exception to your version of the file,\r
+  * but you are not obligated to do so. If you do not wish to do so, delete\r
+  * this exception statement from your version.\r
+*/\r
+\r
+$strRel = '../../../';\r
+include ($strRel.'config.php');\r
+include ($DIR_LIBS.'PLUGINADMIN.php');\r
+\r
+require_once($DIR_PLUGINS . 'sharedlibs/sharedlibs.php');\r
+require_once('cles/Feedback.php');\r
+\r
+$required = '4.3.0';\r
+if( ! version_compare(phpversion() , $required , '>=') ){\r
+       ACTIONLOG :: add(WARNING, 'NP_MoblogはPHP>=4.3.0であることが必要です。');\r
+}\r
+\r
+if ($blogid) {\r
+       $isblogadmin = $member->isBlogAdmin($blogid);\r
+} else\r
+       $isblogadmin = 0;\r
+\r
+if (!$member->isLoggedIn()) {\r
+       $oPluginAdmin = new PluginAdmin('Moblog');\r
+       $oPluginAdmin->start();\r
+       echo "<p>ログインが必要です</p>";\r
+       $oPluginAdmin->end();\r
+       exit;\r
+}\r
+\r
+if (!($member->isAdmin() || $isblogadmin)) {\r
+       $oPluginAdmin = new PluginAdmin('Moblog');\r
+       $oPluginAdmin->start();\r
+       echo "<p>"._ERROR_DISALLOWED."</p>";\r
+       $oPluginAdmin->end();\r
+       exit;\r
+}\r
+\r
+if (isset ($_GET['page'])) {\r
+       $action = getVar('page');\r
+}\r
+if (isset ($_POST['page'])) {\r
+       $action = getVar('page');\r
+}\r
+\r
+// create the admin area page\r
+$oPluginAdmin = new PluginAdmin('Moblog');\r
+$oPluginAdmin->start();\r
+$fb =& new cles_Feedback($oPluginAdmin);\r
+\r
+// menu\r
+echo "<h2>Moblog menu</h2>\n";\r
+echo "<ul>\n";\r
+echo "<li><a href=\"".serverVar('PHP_SELF')."?page=report\"><span style=\"font-weight:bold; color:red\">" . $fb->getMenuStr() . "</span></a></li>\n";\r
+echo "</ul>\n";\r
+\r
+//action\r
+switch ($action) {\r
+       case 'report' :\r
+               $fb->printForm();\r
+               break;\r
+\r
+       default :\r
+               break;\r
+}\r
+\r
+echo "<br />";\r
+\r
+$oPluginAdmin->end();\r