Created
January 27, 2010 22:36
-
-
Save simensen/288231 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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