git-svn-id: file:///home/shish/svn/shimmie2/trunk@395 7f39781d-f577-437e-ae19-be835c7a54ca
		
			
				
	
	
		
			25 lines
		
	
	
		
			682 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			682 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| class AdminUtilsTheme extends Themelet {
 | |
| 	/*
 | |
| 	 * Show a form which links to admin_utils with POST[action] set to one of:
 | |
| 	 *  'lowercase all tags'
 | |
| 	 *  'recount tag use'
 | |
| 	 *  'purge unused tags'
 | |
| 	 */
 | |
| 	public function display_form($page) {
 | |
| 		$html = "
 | |
| 			<p><form action='".make_link("admin_utils")."' method='POST'>
 | |
| 				<select name='action'>
 | |
| 					<option value='lowercase all tags'>All tags to lowercase</option>
 | |
| 					<option value='recount tag use'>Recount tag use</option>
 | |
| 					<option value='purge unused tags'>Purge unused tags</option>
 | |
| 				</select>
 | |
| 				<input type='submit' value='Go'>
 | |
| 			</form>
 | |
| 		";
 | |
| 		$page->add_block(new Block("Misc Admin Tools", $html));
 | |
| 	}
 | |
| }
 | |
| ?>
 |