You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
			
		
		
		
		
			
		
			
				
					
					
						
							70 lines
						
					
					
						
							2.5 KiB
						
					
					
				
			
		
		
	
	
							70 lines
						
					
					
						
							2.5 KiB
						
					
					
				| <?php
 | |
| 	/*****************************************************************************
 | |
| 	IP Reg, a PHP/MySQL IPAM tool
 | |
| 	Copyright (C) 2008 Wietse Warendorff
 | |
| 	
 | |
| 	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 3 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, see <http://www.gnu.org/licenses/>.
 | |
| 	
 | |
| 	For more information, visit http://sourceforge.net/projects/ipreg,
 | |
| 	or contact me at wietsew@users.sourceforge.net
 | |
| 	*****************************************************************************/
 | |
| 	
 | |
| 	// includes
 | |
| 	include("includes.php");
 | |
| 	
 | |
| 	// check authorisation
 | |
| 	$auth = auth("userclassauth", $config_auth_userclassauthview, 0);
 | |
| 	
 | |
| 	// start output
 | |
| 	include("header.php");
 | |
| 	
 | |
| 	// set template
 | |
| 	$tp = new Template("tpl/userclassauth.tpl");
 | |
| 	
 | |
| 	// set language variables
 | |
| 	$tp->setvars($lang);
 | |
| 	
 | |
| 	// get userclassauth info
 | |
| 	$result = mysql_query("SELECT uc.userclass_id, uc.userclass_name, uca.userclassauth_id, uca.item, uca.id, uca.auth FROM userclass uc, userclassauth uca WHERE uc.userclass_id=uca.userclass_id ORDER BY uc.userclass_name, item, id, auth") or die(mysql_error());
 | |
| 	for ($i=0;$row=mysql_fetch_object($result);$i++) {		
 | |
| 		$tp->set("count", $i+1);
 | |
| 		$tp->set("userclass_id", $row->userclass_id);
 | |
| 		$tp->set("userclass_name", $row->userclass_name);
 | |
| 		$tp->set("item_name", $authitems[$row->item]['name']);
 | |
| 		$tp->set("auth", $row->auth);
 | |
| 		
 | |
| 		// check for set id
 | |
| 		if($row->id>0) {
 | |
| 			// id set
 | |
| 			$item = $row->item;
 | |
| 			$txt_item_id = $authitems[$row->item]['item_id'];
 | |
| 			$txt_item_name = $authitems[$row->item]['item_name'];
 | |
| 			$subresult = mysql_query("SELECT $txt_item_id AS item_id, $txt_item_name AS item_name FROM $item") or die(mysql_error());
 | |
| 			$subrow=mysql_fetch_object($subresult);
 | |
| 			$tp->set("subitem_name", $subrow->item_name);
 | |
| 		} else {
 | |
| 			// no id, so make output empty
 | |
| 			$tp->set("subitem_name", "");
 | |
| 		}
 | |
| 		
 | |
| 		$tp->parse("ucarow");
 | |
| 	}
 | |
| 	if (($i>0) ? $tp->parse("uca") : $tp->hide("uca"));
 | |
| 
 | |
| 	// output
 | |
| 	$tp->parse();
 | |
| 	$tp->spit();
 | |
| 		
 | |
| 	include("footer.php");
 | |
| ?>
 |