Your IP : 172.70.178.32


Current Path : /var/www/element/data/www/vsl-gates.ru/manager/actions/
Upload File :
Current File : /var/www/element/data/www/vsl-gates.ru/manager/actions/resource_selector.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.");

if(!$modx->hasPermission('edit_module')) {	
	$e->setError(3);
	$e->dumpError();	
}

?>
<html>
<head>
	<title><?php echo $content["name"]." ".$_lang['resource_selector_title']; ?></title>
	<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $modx_charset; ?>" />
	<link rel="stylesheet" type="text/css" href="media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>style.css<?php echo "?$theme_refresher";?>" />
<?php
if($_SESSION['browser']=='ie') {
?>   
	<style>
	/* stupid box model hack for equally stupid MSIE */
	.sectionHeader, .sectionBody {
		width:100%;
	}
	</style>
<?php
}
?>
</head>
<body ondragstart="return false">

<?php
	/**
	 * Resource Selector
	 * Created by Raymond Irving May, 2005
	 * 
	 * Selects a resource and returns the id values to the window.opener["callback"]() function as an array.
	 * The name of the callback function is passed via the url as &cb
	 */

	// get name of callback function
	$cb = $_REQUEST['cb'];
	
	// get resource type
	$rt = strtolower($_REQUEST['rt']);
	
	// get selection method: s - single (default), m - multiple
	$sm = strtolower($_REQUEST['sm']);

	// get search string
	$query = $_REQUEST['search'];
	$sqlQuery = mysql_escape_string($query);

	// select SQL
	switch($rt){
		case "snip":
			$title = $_lang["snippet"];
			$sql="SELECT id,name,description FROM ".$modx->getFullTableName("site_snippets").
			($sqlQuery ? " WHERE (name LIKE '%$sqlQuery%') OR (description LIKE '%$sqlQuery%')":"")." ORDER BY name";
			break;

		case "tpl":
			$title = $_lang["template"];
			$sql="SELECT id,templatename as 'name',description FROM ".$modx->getFullTableName("site_templates").
			($sqlQuery ? " WHERE (templatename LIKE '%$sqlQuery%') OR (description LIKE '%$sqlQuery%')":"")." ORDER BY templatename";
			break;

		case("tv"):
			$title = $_lang["tv"];
			$sql="SELECT id,name,description FROM ".$modx->getFullTableName("site_tmplvars").
			($sqlQuery ? " WHERE (name LIKE '%$sqlQuery%') OR (description LIKE '%$sqlQuery%')":"")." ORDER BY name";
			break;

		case("chunk"):
			$title = $_lang["chunk"];
			$sql="SELECT id,name,description FROM ".$modx->getFullTableName("site_htmlsnippets").
			($sqlQuery ? " WHERE (name LIKE '%$sqlQuery%') OR (description LIKE '%$sqlQuery%')":"")." ORDER BY name";
			break;

		case("plug"):
			$title = $_lang["plugin"];
			$sql="SELECT id,name,description FROM ".$modx->getFullTableName("site_plugins").
			($sqlQuery ? " WHERE (name LIKE '%$sqlQuery%') OR (description LIKE '%$sqlQuery%')":"")." ORDER BY name";
			break;

		case("doc"):
			$title = $_lang["document"];
			$sql="SELECT id,pagetitle as 'name',longtitle as 'description' FROM ".$modx->getFullTableName("site_content").
			($sqlQuery ? " WHERE (pagetitle LIKE '%$sqlQuery%') OR (longtitle LIKE '%$sqlQuery%')":"")." ORDER BY pagetitle";
			break;
			
	}
	
?>
<script language="JavaScript" type="text/javascript">
	function saveSelection() {
		var ids = [];
		var ctrl = document.selector['id[]'];
		if (!ctrl.length && ctrl.checked) ids[0] =  ctrl.value; 
		else for(i=0;i<ctrl.length;i++){
			if (ctrl[i].checked) ids[ids.length]=ctrl[i].value; 
		}
		cb = window.opener["<?php echo $cb; ?>"];
		if(cb) cb("<?php echo $rt; ?>",ids);
		window.close();
	};
	
	function searchResource(){
		document.selector.op.value="srch";
		document.selector.submit();
	};

	function resetSearch(){
		document.selector.search.value="";
		searchResource()
	}	

	function changeListMode(){
		var m = parseInt(document.selector.listmode.value) ? 1:0;
		if (m) document.selector.listmode.value=0;
		else document.selector.listmode.value=1;
		document.selector.submit();
	};

	// restore checkbox function
	function restoreChkBoxes(){
		var i,c,chk;
		var a = window.opener.chkBoxArray;
		var f = document.selector;
		chk = f.elements['id[]'];
		if (!chk.length) chk.checked = (a[chk.value]) ? true:false;
		else {
			for(i=0;i<chk.length;i++) {
				c = chk[i];
				c.checked = (a[c.value]) ? true:false;
			}
		}
	};
	// set checkbox value
	function setCheckbox(chk){
		var a = window.opener.chkBoxArray;
		a[chk.value] = chk.checked;		
	};
	// restore checkboxes
	setTimeout("restoreChkBoxes();",100);
</script>
<form name="selector" method="get">
<input type="hidden" name="id" value="<?php echo $id; ?>" />
<input type="hidden" name="a" value="<?php echo $_REQUEST['a']; ?>" />
<input type="hidden" name="listmode" value="<?php echo $_REQUEST['listmode']; ?>" />
<input type="hidden" name="op" value="" />
<input type="hidden" name="rt" value="<?php echo $rt; ?>" />
<input type="hidden" name="rt" value="<?php echo $rt; ?>" />
<input type="hidden" name="sm" value="<?php echo $sm; ?>" />
<input type="hidden" name="cb" value="<?php echo $cb; ?>" />
<div class="sectionHeader" style="margin:0px"><?php echo $title." - ".$_lang['resource_selector_title']; ?></div>
<div class="sectionBody" style="margin-top:5px;margin-right:0px;margin-left:0px;border:0px;">
<p><img src='media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/icons/circlerightarrow.gif' alt="." width="32" height="32" align="left" hspace="10" /><?php echo $_lang['resource_selector_msg']; ?></p>
<br />
<!-- resources -->
	 <table width="100%" border="0" cellspacing="1" cellpadding="2">
	 <tr>
	 	<td>
	<div class="searchbar">
		<table border="0" width="100%">
			<tr>
			<td nowrap="nowrap">
				<table border="0"><tr><td><?php echo $_lang["search"]; ?></td><td><input class="searchtext" name="search" type="text" size="15" value="<?php echo $query; ?>" /></td>
				<td><a href="#" class="searchbutton" title="<?php echo $_lang["search"];?>" onclick="searchResource();return false;"><?php echo $_lang["go"]; ?></a></td>
				<td><a href="#" class="searchbutton" title="<?php echo $_lang["reset"];?>" onclick="resetSearch();return false;"><img src="media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/icons/refresh.gif" width="16" height="16"/></a></td>
				<td><a href="#" class="searchbutton" title="<?php echo $_lang["list_mode"];?>" onclick="changeListMode();return false;"><img src="media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/icons/table.gif" width="16" height="16"/></a></td>
				</tr>
				</table>
			</td>
			<td width="200">
				<a href="#" class="searchtoolbarbtn" style="float:right;margin-left:2px;" onclick="window.close()"><img src="media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/icons/cancel.gif" align="absmiddle"> <?php echo $_lang['cancel']; ?></a>
				<a href="#" class="searchtoolbarbtn" style="float:right;margin-left:2px;" onclick="saveSelection()"><img src="media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/icons/save.gif" align="absmiddle"> <?php echo $_lang['insert']; ?></a>				
			</td>
			</tr>
		</table>
	</div>	
	 	</td>
	 </tr>
	  <tr>
		<td valign="top" align="left">
		<?php
			$ds = $modx->dbQuery($sql);
			if (!$ds){
				echo "An error occured while loading records.";
				exit;
			}
			else {
				include_once $base_path."manager/includes/controls/datagrid.class.php";
				$grd = new DataGrid('',$ds,$number_of_results); // set page size to 0 t show all items
				$grd->noRecordMsg = $_lang["no_records_found"];
				$grd->cssClass="grid";
				$grd->columnHeaderClass="gridHeader";
				$grd->itemClass="gridItem"; 
				$grd->altItemClass="gridAltItem"; 
				$grd->columns=$_lang["name"]." ,".$_lang["description"];
				$grd->colTypes = "template:<input type='".($sm=='m'? 'checkbox':'radio')."' name='id[]' value='[+id+]' onclick='setCheckbox(this);'> [+value+]";
				$grd->colWidths = "45%";
				$grd->fields="name,description";
				if($_REQUEST['listmode']=='1') $grd->pageSize=0;
				echo $grd->render();
			}			
		?>
		</td>
	  </tr>
	</table>
</div>
</form>
</body>
</html>