asprin
Active member
Hi,
After using the following code:
	
	
	
		
The output is as follows:

Can I add some custom values to this entity apart from the ones already present? For example, after
Is this a possibility?
				
			After using the following code:
		PHP:
	
	$repo = $this->repository('FC:Events');
$finder = $repo->fetchAllEvents()->limitByPage($page, $perPage);
$events = $finder->fetch();
echo '<pre>';
print_r($events);
echo '</pre>';
	
Can I add some custom values to this entity apart from the ones already present? For example, after
event_status, I would want to have [foo] => 'bar'Is this a possibility?