Skip to content

Instantly share code, notes, and snippets.

@simensen
Created January 27, 2010 22:36
Show Gist options
  • Save simensen/288231 to your computer and use it in GitHub Desktop.
Save simensen/288231 to your computer and use it in GitHub Desktop.
<?php
// Import the Space Repository.
$context->import('s3a_spaceRepository.context.php');
// Define the Space Edit controller, and make certain that the Space Repository
// is set.
$context->set('spaceEditController', array(
'className' => 's3a_controllers_admin_SpaceEditController',
'properties' => array(
'spaceRepository' => $context->ref('spaceRepository'),
'formView' => 'admin.space.edit.form',
'successView' => 'admin.space.edit.success',
'cancelView' => 'admin.space.edit.cancel',
),
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment