59 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| function manage_content(&$a) {
 | |
| 
 | |
| 	if(! get_account_id()) {
 | |
| 		notice( t('Permission denied.') . EOL);
 | |
| 		return;
 | |
| 	}
 | |
| 
 | |
| 	$change_channel = ((argc() > 1) ? intval(argv(1)) : 0);
 | |
| 	if($change_channel) {
 | |
| 		$r = q("select * from entity where entity_id = %d and entity_account_id = %d limit 1",
 | |
| 			intval($change_channel),
 | |
| 			intval(get_account_id())
 | |
| 		);
 | |
| 		if($r && count($r)) {
 | |
| 			$_SESSION['uid'] = intval($r[0]['entity_id']);
 | |
| 			get_app()->identity = $r[0];
 | |
| 			$_SESSION['theme'] = $r[0]['entity_theme'];
 | |
| 			date_default_timezone_set($r[0]['entity_timezone']);
 | |
| 		}
 | |
| 		if($r[0]['entity_startpage'])
 | |
| 			goaway(z_root() . '/' . $r[0]['entity_startpage']);
 | |
| 		goaway(z_root());
 | |
| 	}
 | |
| 
 | |
| 
 | |
| 	$channels = null;
 | |
| 
 | |
| 	if(local_user()) {
 | |
| 		$r = q("select entity.*, contact.* from entity left join contact on entity.entity_id = contact.uid 
 | |
| 			where entity.entity_account_id = %d and contact.self = 1",
 | |
| 			intval(get_account_id())
 | |
| 		);
 | |
| 
 | |
| 		if($r && count($r)) {
 | |
| 			$channels = $r;
 | |
| 			for($x = 0; $x < count($channels); $x ++)
 | |
| 				$channels[$x]['link'] = 'manage/' . intval($channels[$x]['entity_id']);
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	$links = array(
 | |
| 		array( 'zentity', t('Create a new channel'), t('New Channel'))
 | |
| 	);
 | |
| 
 | |
| 
 | |
| 	$o = replace_macros(get_markup_template('channels.tpl'), array(
 | |
| 		'$header'       => t('Channel Manager'),
 | |
| 		'$desc'         => t('Attach to one of your channels by selecting it.'),
 | |
| 		'$links'        => $links,
 | |
| 		'$all_channels' => $channels,
 | |
| 	));
 | |
| 
 | |
| 
 | |
| 	return $o;
 | |
| 
 | |
| }
 |