mirror of
https://github.com/e107inc/e107.git
synced 2025-08-06 06:38:00 +02:00
InfoPanel changes- removed tabs.
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/*
|
/*
|
||||||
+ ----------------------------------------------------------------------------+
|
+ ----------------------------------------------------------------------------+
|
||||||
| e107 website system
|
| e107 website system
|
||||||
@@ -11,70 +12,74 @@
|
|||||||
| GNU General Public License (http://gnu.org).
|
| GNU General Public License (http://gnu.org).
|
||||||
|
|
|
|
||||||
| $Source: /cvs_backup/e107_0.8/e107_admin/includes/infopanel.php,v $
|
| $Source: /cvs_backup/e107_0.8/e107_admin/includes/infopanel.php,v $
|
||||||
| $Revision: 1.4 $
|
| $Revision: 1.5 $
|
||||||
| $Date: 2009-07-08 06:58:00 $
|
| $Date: 2009-07-23 10:46:11 $
|
||||||
| $Author: e107coders $
|
| $Author: e107coders $
|
||||||
+----------------------------------------------------------------------------+
|
+----------------------------------------------------------------------------+
|
||||||
*/
|
*/
|
||||||
|
if (!defined('e107_INIT'))
|
||||||
if (!defined('e107_INIT')) { exit; }
|
|
||||||
|
|
||||||
require_once(e_HANDLER."message_handler.php");
|
|
||||||
$emessage = &eMessage::getInstance();
|
|
||||||
require_once(e_HANDLER."form_handler.php");
|
|
||||||
$frm = new e_form(true); //enable inner tabindex counter
|
|
||||||
|
|
||||||
if(isset($_POST['submit-mye107']))
|
|
||||||
{
|
{
|
||||||
$user_pref['core-infopanel-mye107'] = $_POST['e-mye107'];
|
exit;
|
||||||
save_prefs('user');
|
|
||||||
}
|
}
|
||||||
|
require_once (e_HANDLER."message_handler.php");
|
||||||
|
$emessage = & eMessage :: getInstance();
|
||||||
|
require_once (e_HANDLER."form_handler.php");
|
||||||
|
$frm = new e_form(true);
|
||||||
|
//enable inner tabindex counter
|
||||||
|
if (isset ($_POST['submit-mye107']))
|
||||||
|
{
|
||||||
|
$user_pref['core-infopanel-mye107'] = $_POST['e-mye107'];
|
||||||
|
save_prefs('user');
|
||||||
|
}
|
||||||
|
// $text = "<div style='text-align:center'>";
|
||||||
|
|
||||||
|
/*$text .="
|
||||||
$text = "<div style='text-align:center'>
|
<div class='admintabs' id='tab-container'>
|
||||||
<div class='admintabs' id='tab-container'>
|
<ul class='e-tabs e-hideme' id='core-emote-tabs'>
|
||||||
<ul class='e-tabs e-hideme' id='core-emote-tabs'>
|
<li id='tab-infopanel_mye107'><a href='#core-infopanel_mye107'>My Admin Panel</a></li>
|
||||||
<li id='tab-infopanel_mye107'><a href='#core-infopanel_mye107'>My Admin Panel</a></li>
|
<li id='tab-infopanel_news'><a href='#core-infopanel_news'>e107 News</a></li>
|
||||||
<li id='tab-infopanel_news'><a href='#core-infopanel_news'>e107 News</a></li>
|
<li id='tab-infopanel_latest'><a href='#core-infopanel_latest'>Info</a></li>
|
||||||
<li id='tab-infopanel_latest'><a href='#core-infopanel_latest'>Info</a></li>
|
<li id='tab-infopanel_online'><a href='#core-infopanel_online'>Who's Online</a></li>
|
||||||
<li id='tab-infopanel_online'><a href='#core-infopanel_online'>Who's Online</a></li>
|
<li id='tab-infopanel_customize'><a href='#core-infopanel_customize'>Customize</a></li>
|
||||||
<li id='tab-infopanel_customize'><a href='#core-infopanel_customize'>Customize</a></li>
|
<li id='tab-infopanel_add'><a href='#core-infopanel_add'>+</a></li>
|
||||||
<li id='tab-infopanel_add'><a href='#core-infopanel_add'>+</a></li>
|
</ul>";
|
||||||
</ul>";
|
*/
|
||||||
|
$text = "<div style='text-align:center'>";
|
||||||
|
|
||||||
// My E107
|
// My E107
|
||||||
|
|
||||||
// Info about attributes
|
// Info about attributes
|
||||||
|
|
||||||
/*
|
/*
|
||||||
attribute 1 = link
|
attribute 1 = link
|
||||||
attribute 2 = title
|
attribute 2 = title
|
||||||
attribute 3 = description
|
attribute 3 = description
|
||||||
attribute 4 = perms
|
attribute 4 = perms
|
||||||
attribute 5 = category
|
attribute 5 = category
|
||||||
1 - settings
|
1 - settings
|
||||||
2 - users
|
2 - users
|
||||||
3 - content
|
3 - content
|
||||||
4 - tools
|
4 - tools
|
||||||
5 - plugins
|
5 - plugins
|
||||||
6 - about
|
6 - about
|
||||||
attribute 6 = 16 x 16 image
|
attribute 6 = 16 x 16 image
|
||||||
attribute 7 = 32 x 32 image
|
attribute 7 = 32 x 32 image
|
||||||
*/
|
*/
|
||||||
/* $buts = "";
|
|
||||||
|
|
||||||
while (list($key, $funcinfo) = each($array_functions_assoc))
|
/* $buts = "";
|
||||||
{
|
|
||||||
$iconlist[$key] = array("title"=>$funcinfo[1],"icon"=>$funcinfo[5]); // , $funcinfo[1], $funcinfo[2], $funcinfo[3], $funcinfo[6], "classis");
|
|
||||||
$buts .= render_links($funcinfo[0], $funcinfo[1], $funcinfo[2], $funcinfo[3], $funcinfo[6], "classis");
|
|
||||||
}*/
|
|
||||||
|
|
||||||
$iconlist = array_merge($array_functions_assoc,getPluginLinks(E_16_PLUGMANAGER, "array"));
|
while (list($key, $funcinfo) = each($array_functions_assoc))
|
||||||
|
{
|
||||||
|
$iconlist[$key] = array("title"=>$funcinfo[1],"icon"=>$funcinfo[5]); // , $funcinfo[1], $funcinfo[2], $funcinfo[3], $funcinfo[6], "classis");
|
||||||
|
$buts .= render_links($funcinfo[0], $funcinfo[1], $funcinfo[2], $funcinfo[3], $funcinfo[6], "classis");
|
||||||
|
}*/
|
||||||
|
|
||||||
|
|
||||||
$text .= "
|
|
||||||
|
|
||||||
<div id='core-infopanel_mye107' class='adminedit' >
|
|
||||||
|
|
||||||
|
$iconlist = array_merge($array_functions_assoc,getPluginLinks(E_16_PLUGMANAGER,"array"));
|
||||||
|
$text .= "
|
||||||
|
|
||||||
|
<div id='core-infopanel_mye107' class='f-left' style='width:49%'>
|
||||||
<div style='border:1px solid silver;margin:10px'>
|
<div style='border:1px solid silver;margin:10px'>
|
||||||
<div class='main_caption bevel left'><b>Welcome to your e107 Content Management System</b></div>
|
<div class='main_caption bevel left'><b>Welcome to your e107 Content Management System</b></div>
|
||||||
|
|
||||||
@@ -87,21 +92,53 @@ attribute 7 = 32 x 32 image
|
|||||||
|
|
||||||
<div class='left' style='padding:25px'>";
|
<div class='left' style='padding:25px'>";
|
||||||
|
|
||||||
// Rendering the saved configuration.
|
|
||||||
|
|
||||||
foreach($iconlist as $key=>$val)
|
|
||||||
{
|
|
||||||
if(in_array($key,$user_pref['core-infopanel-mye107']))
|
|
||||||
{
|
|
||||||
$text .= render_links($val['link'], $val['title'], $val['caption'], $val['perms'], $val['icon_32'], "div");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$text .="<div class='clear'> </div>
|
// Rendering the saved configuration.
|
||||||
|
|
||||||
|
foreach ($iconlist as $key => $val)
|
||||||
|
{
|
||||||
|
if (in_array($key,$user_pref['core-infopanel-mye107']))
|
||||||
|
{
|
||||||
|
$text .= render_links($val['link'],$val['title'],$val['caption'],$val['perms'],$val['icon_32'],"div");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$text .= "<div class='clear'> </div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class='left block-text' >
|
<div class='left block-text' >
|
||||||
To customize the icons that appear in this panel, please <a href='#core-infopanel_customize&etabTabContainer=core-infopanel_customize'>click here</a>.
|
To customize the icons that appear in this panel, please
|
||||||
|
<a href='#customize_icons' class='e-expandit'>click here</a>.
|
||||||
|
<form method='post' action='".e_SELF."?".e_QUERY."'>
|
||||||
|
<div id='customize_icons' class='e-hideme block-text'>
|
||||||
|
<div style='border:1px solid silver;margin:10px'>
|
||||||
|
<div class='main_caption bevel left'><b>Customize Icons</b></div>
|
||||||
|
<div class='left block-text' >";
|
||||||
|
|
||||||
|
foreach ($iconlist as $key => $icon)
|
||||||
|
{
|
||||||
|
$checked = (in_array($key,$user_pref['core-infopanel-mye107'])) ? true : false;
|
||||||
|
$text .= "<div class='left f-left list field-spacer' style='display:block;height:24px;width:200px;'>
|
||||||
|
".$icon['icon'].$frm->checkbox('e-mye107[]',$key,$checked).$icon['title']."</div>";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (is_array($pluglist))
|
||||||
|
{
|
||||||
|
foreach ($pluglist as $key => $icon)
|
||||||
|
{
|
||||||
|
$checked = (in_array('p-'.$key,$user_pref['core-infopanel-mye107'])) ? true : false;
|
||||||
|
$text .= "<div class='left f-left list field-spacer' style='display:block;height:24px;width:200px;'>
|
||||||
|
".$icon['icon'].$frm->checkbox('e-mye107[]',$key,$checked).$icon['title']."</div>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$text .= "<div class='clear'> </div>";
|
||||||
|
$text .= "<div id='button' class='buttons-bar center'>";
|
||||||
|
// has issues with the checkboxes.
|
||||||
|
$text .= $frm->admin_button('submit-mye107','Save','Save');
|
||||||
|
$text .= "</div></div></div></div></form>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
@@ -109,20 +146,22 @@ attribute 7 = 32 x 32 image
|
|||||||
</div>
|
</div>
|
||||||
";
|
";
|
||||||
|
|
||||||
// e107 News
|
|
||||||
|
|
||||||
|
|
||||||
|
// e107 News ------------------------------------------------------------------
|
||||||
$text .= "
|
$text .= "
|
||||||
<div id='core-infopanel_news' class='adminedit' >
|
<div id='core-infopanel_news' class='f-left' style='width:49%'>
|
||||||
<div style='border:1px solid silver;margin:10px'>
|
<div style='border:1px solid silver;margin:10px'>
|
||||||
<div class='main_caption bevel left'><b>e107 News</b></div>
|
<div class='main_caption bevel left'><b>e107 News</b></div>
|
||||||
<div class='left block-text'>";
|
<div class='left block-text'>";
|
||||||
/*
|
|
||||||
require_once(e_HANDLER.'xml_class.php');
|
|
||||||
$xml = new xmlClass;
|
|
||||||
$vars = $xml->loadXMLfile('http://www.e107.org/e107_plugins/rss_menu/rss.php?1.2', true, true);
|
|
||||||
$text .= print_r($vars,TRUE);*/
|
|
||||||
|
|
||||||
$text .= "
|
/*
|
||||||
|
require_once(e_HANDLER.'xml_class.php');
|
||||||
|
$xml = new xmlClass;
|
||||||
|
$vars = $xml->loadXMLfile('http://www.e107.org/e107_plugins/rss_menu/rss.php?1.2', true, true);
|
||||||
|
$text .= print_r($vars,TRUE);*/
|
||||||
|
|
||||||
|
$text .= "
|
||||||
RSS News feed from e107.org goes here.
|
RSS News feed from e107.org goes here.
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -130,22 +169,20 @@ $text .= "
|
|||||||
";
|
";
|
||||||
|
|
||||||
|
|
||||||
// e107 latest
|
|
||||||
|
|
||||||
|
// e107 latest
|
||||||
$text .= "
|
$text .= "
|
||||||
<div id='core-infopanel_latest' class='adminedit' >
|
<div id='core-infopanel_latest' class='f-left' style='width:49%' >
|
||||||
<div style='border:1px solid silver;margin:10px'>
|
<div style='border:1px solid silver;margin:10px'>
|
||||||
<table cellspacing='0' cellpadding='0'>
|
<table cellspacing='0' cellpadding='0'>
|
||||||
<tr>
|
<tr>
|
||||||
<td style='padding:0px'>
|
<td style='padding:0px'>
|
||||||
";
|
";
|
||||||
|
require_once (e_FILE."shortcode/batch/admin_shortcodes.php");
|
||||||
require_once(e_FILE."shortcode/batch/admin_shortcodes.php");
|
|
||||||
$text .= $tp->parseTemplate("{ADMIN_LATEST}");
|
$text .= $tp->parseTemplate("{ADMIN_LATEST}");
|
||||||
$text .= "</td><td style='padding:0px'>";
|
$text .= "</td><td style='padding:0px'>";
|
||||||
$text .= $tp->parseTemplate("{ADMIN_STATUS}");
|
$text .= $tp->parseTemplate("{ADMIN_STATUS}");
|
||||||
|
$text .= "</td></tr></table>
|
||||||
$text .= "</td></tr></table>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@@ -154,9 +191,8 @@ $text .= $tp->parseTemplate("{ADMIN_STATUS}");
|
|||||||
|
|
||||||
|
|
||||||
// Who's Online ---------------------------------
|
// Who's Online ---------------------------------
|
||||||
|
|
||||||
$text .= "
|
$text .= "
|
||||||
<div id='core-infopanel_online' class='adminedit' >
|
<div id='core-infopanel_online' class='f-left' style='width:49%'>
|
||||||
<div style='border:1px solid silver;margin:10px'>
|
<div style='border:1px solid silver;margin:10px'>
|
||||||
<div class='main_caption bevel left'><b>Who's Online</b></div>
|
<div class='main_caption bevel left'><b>Who's Online</b></div>
|
||||||
<div class='left block-text'>
|
<div class='left block-text'>
|
||||||
@@ -177,72 +213,31 @@ $text .= "
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>";
|
<tbody>";
|
||||||
|
|
||||||
if($e107->sql->db_Select('online', '*'))
|
|
||||||
{
|
if ($e107->sql->db_Select('online','*'))
|
||||||
$newsarray = $e107->sql->db_getList();
|
{
|
||||||
foreach($newsarray as $key=>$val)
|
$newsarray = $e107->sql->db_getList();
|
||||||
{
|
foreach ($newsarray as $key => $val)
|
||||||
$text .= "<tr>
|
{
|
||||||
|
$text .= "<tr>
|
||||||
<td>".$val['online_timestamp']."</td>
|
<td>".$val['online_timestamp']."</td>
|
||||||
<td>".$val['online_user_id']."</td>
|
<td>".$val['online_user_id']."</td>
|
||||||
<td>".$val['online_location']."</td>
|
<td>".$val['online_location']."</td>
|
||||||
</tr>
|
</tr>
|
||||||
";
|
";
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
$text .= "</tbody></table></form></div>
|
||||||
|
|
||||||
|
|
||||||
$text .= "</tbody></table></form></div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
";
|
";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Customizer ------------------------------------------
|
// Customizer ------------------------------------------
|
||||||
|
/*
|
||||||
$text .= "
|
$text .= "
|
||||||
<form method='post' action='".e_SELF."?".e_QUERY."'>
|
<div id='core-infopanel_add' class='f-left' style='width:49%'>
|
||||||
<div id='core-infopanel_customize' class='adminedit' >
|
|
||||||
<div style='border:1px solid silver;margin:10px'>
|
|
||||||
<div class='main_caption bevel left'><b>Customize your Admin Panel</b></div>
|
|
||||||
<div class='block-text'>";
|
|
||||||
|
|
||||||
foreach($iconlist as $key=>$icon)
|
|
||||||
{
|
|
||||||
$checked = (in_array($key,$user_pref['core-infopanel-mye107'])) ? TRUE : FALSE;
|
|
||||||
$text .= "<div class='left f-left list field-spacer' style='display:block;height:24px;width:200px;'>
|
|
||||||
".$icon['icon'].$frm->checkbox('e-mye107[]',$key, $checked). $icon['title']."</div>";
|
|
||||||
}
|
|
||||||
|
|
||||||
if(is_array($pluglist))
|
|
||||||
{
|
|
||||||
foreach($pluglist as $key=>$icon)
|
|
||||||
{
|
|
||||||
$checked = (in_array('p-'.$key,$user_pref['core-infopanel-mye107'])) ? TRUE : FALSE;
|
|
||||||
$text .= "<div class='left f-left list field-spacer' style='display:block;height:24px;width:200px;'>
|
|
||||||
".$icon['icon'].$frm->checkbox('e-mye107[]', $key, $checked). $icon['title']."</div>";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$text .= " </div>
|
|
||||||
<div class='clear'> </div>
|
|
||||||
</div>";
|
|
||||||
$text .= "<div id='button' class='buttons-bar center'>"; // has issues with the checkboxes.
|
|
||||||
$text .= $frm->admin_button('submit-mye107','Save','Save');
|
|
||||||
$text .= "</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
";
|
|
||||||
|
|
||||||
// e107 News
|
|
||||||
|
|
||||||
$text .= "
|
|
||||||
<div id='core-infopanel_add' class='adminedit' >
|
|
||||||
<div style='border:1px solid silver;margin:10px'>
|
<div style='border:1px solid silver;margin:10px'>
|
||||||
<div class='main_caption bevel left'><b>Add</b></div>
|
<div class='main_caption bevel left'><b>Add</b></div>
|
||||||
<div class='left block-text'>
|
<div class='left block-text'>
|
||||||
@@ -252,60 +247,12 @@ $text .= "
|
|||||||
</div>
|
</div>
|
||||||
";
|
";
|
||||||
|
|
||||||
|
*/
|
||||||
/*
|
|
||||||
|
|
||||||
foreach ($admin_cat['id'] as $cat_key => $cat_id)
|
|
||||||
{
|
|
||||||
$text_check = FALSE;
|
|
||||||
|
|
||||||
$text_cat = "<div class='adminedit' id='core-main_".$cat_key."'>
|
|
||||||
<div style='border:1px solid silver;margin:10px'>
|
|
||||||
<div class='main_caption bevel'><b>".$admin_cat['title'][$cat_key]."</b></div>
|
|
||||||
<table style='width:100%'>";
|
|
||||||
|
|
||||||
|
|
||||||
if ($cat_key != 5) // Note the Plugin category.
|
|
||||||
{
|
|
||||||
foreach ($newarray as $key => $funcinfo)
|
|
||||||
{
|
|
||||||
if ($funcinfo[4] == $cat_key)
|
|
||||||
{
|
|
||||||
$text_rend = render_links($funcinfo[0], $funcinfo[1], $funcinfo[2], $funcinfo[3], $funcinfo[6], 'classis');
|
|
||||||
if ($text_rend)
|
|
||||||
{
|
|
||||||
$text_check = TRUE;
|
|
||||||
}
|
|
||||||
$text_cat .= $text_rend;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else // Plugin category.
|
|
||||||
{
|
|
||||||
$text_rend = getPluginLinks(E_32_PLUGMANAGER, "classis");
|
|
||||||
|
|
||||||
if ($text_rend)
|
|
||||||
{
|
|
||||||
$text_check = TRUE;
|
|
||||||
}
|
|
||||||
$text_cat .= $text_rend;
|
|
||||||
}
|
|
||||||
$text_cat .= render_clean();
|
|
||||||
$text_cat .= "</table></div>
|
|
||||||
</div>";
|
|
||||||
|
|
||||||
if ($text_check)
|
|
||||||
{
|
|
||||||
$text .= $text_cat;
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$text .= "</div></div>";
|
|
||||||
|
|
||||||
$ns->tablerender(ADLAN_47." ".ADMINNAME, $emessage->render().$text);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$text .= "<div class='clear'> </div>";
|
||||||
|
$text .= "</div>";
|
||||||
|
//$text .= "</div>";
|
||||||
|
$ns->tablerender(ADLAN_47." ".ADMINNAME,$emessage->render().$text);
|
||||||
?>
|
?>
|
||||||
|
Reference in New Issue
Block a user