| Current Path : /var/www/element/data/www/vsl-gates.ru/manager/actions/ |
| Current File : /var/www/element/data/www/vsl-gates.ru/manager/actions/resources.static.php |
<?php
if(IN_MANAGER_MODE!="true") die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the MODx Content Manager instead of accessing this file directly.");
$theme = $manager_theme ? "$manager_theme/":"";
$tablePre = $dbase . '.`' . $table_prefix;
function createResourceList($resourceTable,$action,$tablePre,$nameField = 'name') {
global $modx, $_lang;
$output = '<ul>';
$pluginsql = $resourceTable == 'site_plugins' ? $tablePre.$resourceTable.'`.disabled, ' : '';
$orderby = $resourceTable == 'site_plugins' ? '6,2' : '5,1';
$sql = 'SELECT '.$pluginsql.$tablePre.$resourceTable.'`.'.$nameField.' as name, '.$tablePre.$resourceTable.'`.id, '.$tablePre.$resourceTable.'`.description, '.$tablePre.$resourceTable.'`.locked, if(isnull('.$tablePre.'categories`.category),\''.$_lang['no_category'].'\','.$tablePre.'categories`.category) as category FROM '.$tablePre.$resourceTable.'` left join '.$tablePre.'categories` on '.$tablePre.$resourceTable.'`.category = '.$tablePre.'categories`.id ORDER BY '.$orderby;
$rs = mysql_query($sql);
$limit = mysql_num_rows($rs);
if($limit<1){
echo $_lang['no_results'];
}
$preCat = '';
$insideUl = 0;
for($i=0; $i<$limit; $i++) {
$row = mysql_fetch_assoc($rs);
if ($preCat !== $row['category']) {
$output .= $insideUl? '</ul>': '';
$output .= '<li><strong>'.$row['category'].'</strong><ul>';
$insideUl = 1;
}
if ($resourceTable == 'site_plugins') $class = $row['disabled'] ? ' class="disabledPlugin"' : '';
$output .= '<li><span'.$class.'><a href="index.php?id='.$row['id'].'&a='.$action.'">'.$row['name'].'</a>'.($modx->config['manager_direction']=='rtl' ? '‏' : '').'</span>';
$output .= !empty($row['description']) ? ' - '.$row['description'] : '' ;
$output .= $row['locked'] ? ' <em>('.$_lang['locked'].')</em>' : "" ;
$output .= '</li>';
$preCat = $row['category'];
}
$output .= $insideUl? '</ul>': '';
$output .= '</ul>';
return $output;
}
?>
<script type="text/javascript" src="media/script/tabpane.js"></script>
<br />
<div class="sectionHeader"><?php echo $_lang['resource_management']; ?></div><div class="sectionBody">
<div class="tab-pane" id="resourcesPane">
<script type="text/javascript">
tpResources = new WebFXTabPane( document.getElementById( "resourcesPane" ) );
</script>
<!-- Templates -->
<?php if($modx->hasPermission('new_template') || $modx->hasPermission('edit_template')) { ?>
<div class="tab-page" id="tabTemplates">
<h2 class="tab"><?php echo $_lang["manage_templates"] ?></h2>
<script type="text/javascript">tpResources.addTabPage( document.getElementById( "tabTemplates" ) );</script>
<p><?php echo $_lang['template_management_msg']; ?></p>
<ul>
<li><a href="index.php?a=19"><?php echo $_lang['new_template']; ?></a></li>
</ul>
<br />
<?php echo createResourceList('site_templates',16,$tablePre,'templatename'); ?>
</div>
<?php } ?>
<!-- Template variables -->
<?php if($modx->hasPermission('new_template') || $modx->hasPermission('edit_template')) { ?>
<div class="tab-page" id="tabVariables">
<h2 class="tab"><?php echo $_lang["tmplvars"] ?></h2>
<script type="text/javascript">tpResources.addTabPage( document.getElementById( "tabVariables" ) );</script>
<!--//
Modified By Raymond for Template Variables
Added by Apodigm 09-06-2004- DocVars - web@apodigm.com
-->
<p><?php echo $_lang['tmplvars_management_msg']; ?></p>
<ul>
<li><a href="index.php?a=300"><?php echo $_lang['new_tmplvars']; ?></a></li>
</ul>
<br/>
<?php echo createResourceList('site_tmplvars',301,$tablePre); ?>
</div>
<?php } ?>
<!-- chunks -->
<?php if($modx->hasPermission('new_chunk') || $modx->hasPermission('edit_chunk')) { ?>
<div class="tab-page" id="tabChunks">
<h2 class="tab"><?php echo $_lang["manage_htmlsnippets"] ?></h2>
<script type="text/javascript">tpResources.addTabPage( document.getElementById( "tabChunks" ) );</script>
<p><?php echo $_lang['htmlsnippet_management_msg']; ?></p>
<ul>
<li><a href="index.php?a=77"><?php echo $_lang['new_htmlsnippet']; ?></a></li>
</ul>
<br />
<?php echo createResourceList('site_htmlsnippets',78,$tablePre); ?>
</div>
<?php } ?>
<!-- snippets -->
<?php if($modx->hasPermission('new_snippet') || $modx->hasPermission('edit_snippet')) { ?>
<div class="tab-page" id="tabSnippets">
<h2 class="tab"><?php echo $_lang["manage_snippets"] ?></h2>
<script type="text/javascript">tpResources.addTabPage( document.getElementById( "tabSnippets" ) );</script>
<p><?php echo $_lang['snippet_management_msg']; ?></p>
<ul>
<li><a href="index.php?a=23"><?php echo $_lang['new_snippet']; ?></a></li>
</ul>
<br />
<?php echo createResourceList('site_snippets',22,$tablePre); ?>
</div>
<?php } ?>
<!-- plugins -->
<?php if($modx->hasPermission('new_plugin') || $modx->hasPermission('edit_plugin')) { ?>
<div class="tab-page" id="tabPlugins">
<h2 class="tab"><?php echo $_lang["manage_plugins"] ?></h2>
<script type="text/javascript">tpResources.addTabPage( document.getElementById( "tabPlugins" ) );</script>
<p><?php echo $_lang['plugin_management_msg']; ?></p>
<ul>
<li><a href="index.php?a=101"><?php echo $_lang['new_plugin']; ?></a></li>
<?php if($modx->hasPermission('save_plugin')) { ?><li><a href="index.php?a=100"><?php echo $_lang['plugin_priority']; ?></a></li><?php } ?>
</ul>
<br />
<?php echo createResourceList('site_plugins',102,$tablePre); ?>
</div>
<?php } ?>
<!-- category view -->
<div class="tab-page" id="tabCategory">
<h2 class="tab"><?php echo $_lang["resource_categories"] ?></h2>
<script type="text/javascript">tpResources.addTabPage( document.getElementById( "tabCategory" ) );</script>
<p><?php echo $_lang['category_msg']; ?></p>
<br />
<ul>
<?php
$displayInfo = array();
$tablePre = $dbase . '.`' . $table_prefix;
$hasPermission = 0;
if($modx->hasPermission('edit_plugin') || $modx->hasPermission('new_plugin')) {
$displayInfo['plugin'] = array('table'=>'site_plugins','action'=>102,'name'=>$_lang['manage_plugins']);
$hasPermission = 1;
}
if($modx->hasPermission('edit_snippet') || $modx->hasPermission('new_snippet')) {
$displayInfo['snippet'] = array('table'=>'site_snippets','action'=>22,'name'=>$_lang['manage_snippets']);
$hasPermission = 1;
}
if($modx->hasPermission('edit_chunk') || $modx->hasPermission('new_chunk')) {
$displayInfo['htmlsnippet'] = array('table'=>'site_htmlsnippets','action'=>78,'name'=>$_lang['manage_htmlsnippets']);
$hasPermission = 1;
}
if($modx->hasPermission('edit_template') || $modx->hasPermission('new_template')) {
$displayInfo['templates'] = array('table'=>'site_templates','action'=>16,'name'=>$_lang['manage_templates']);
$displayInfo['tmplvars'] = array('table'=>'site_tmplvars','action'=>301,'name'=>$_lang['tmplvars']);
$hasPermission = 1;
}
if($modx->hasPermission('edit_module') || $modx->hasPermission('new_module')) {
$displayInfo['modules'] = array('table'=>'site_modules','action'=>108,'name'=>$_lang['modules']);
$hasPermission = 1;
}
//Category Delete permission check
$delPerm = 0;
if($modx->hasPermission('save_plugin') ||
$modx->hasPermission('save_snippet') ||
$modx->hasPermission('save_chunk') ||
$modx->hasPermission('save_template') ||
$modx->hasPermission('save_module')) {
$delPerm = 1;
}
if($hasPermission) {
$finalInfo = array();
foreach ($displayInfo as $n => $v) {
$nameField = ($v['table'] == 'site_templates')? 'templatename': 'name';
$pluginsql = $v['table'] == 'site_plugins' ? $tablePre.$v['table'].'`.disabled, ' : '';
$sql = 'SELECT '.$pluginsql.$nameField.' as name, '.$tablePre.$v['table'].'`.id, description, locked, '.$tablePre.'categories`.category, '.$tablePre.'categories`.id as catid FROM '.$tablePre.$v['table'].'` left join '.$tablePre.'categories` on '.$tablePre.$v['table'].'`.category = '.$tablePre.'categories`.id ORDER BY 5,1';
$rs = mysql_query($sql);
$limit = mysql_num_rows($rs);
if($limit>0){
for($i=0; $i<$limit; $i++) {
$row = mysql_fetch_assoc($rs);
$row['type'] = $v['name'];
$row['action'] = $v['action'];
if (empty($row['category'])) {$row['category'] = $_lang['no_category'];}
$finalInfo[] = $row;
}
}
}
foreach($finalInfo as $n => $v) {
$category[$n] = $v['category'];
$name[$n] = $v['name'];
}
array_multisort($category, SORT_ASC, $name, SORT_ASC, $finalInfo);
$preCat = '';
$insideUl = 0;
foreach($finalInfo as $n => $v) {
if ($preCat !== $v['category']) {
echo $insideUl? '</ul>': '';
if ($v['category'] == $_lang['no_category'] || !$delPerm) {
echo '<li><strong>'.$v['category'].'</strong><ul>';
} else {
echo '<li><strong>'.$v['category'].'</strong> (<a href="index.php?a=501&catId='.$v['catid'].'">'.$_lang['delete'].'</a>)<ul>';
}
$insideUl = 1;
}
$class = array_key_exists('disabled',$v) && $v['disabled'] ? ' class="disabledPlugin"' : '';
?>
<li><span<?php echo $class;?>><a href="index.php?id=<?php echo $v['id']. '&a='.$v['action'];?>"><?php echo $v['name']; ?></a></span><?php echo ' (' . $v['type'] . ')'; echo !empty($v['description']) ? ' - '.$v['description'] : '' ; ?><?php echo $v['locked'] ? ' <em>('.$_lang['locked'].')</em>' : "" ; ?></li>
<?php
$preCat = $v['category'];
}
echo $insideUl? '</ul>': '';
?>
<?php
}
?>
</ul>
</div>
</div>
</div>