contributions/jcssmanager/controller/jcssmanager.controller.php
Go to the documentation of this file.00001 <?php 00002 class JCSSManagerController extends ControllerBase { 00003 /** 00004 * Return array of Route instances which are handled by this controller 00005 * 00006 * @return array Array of Routes 00007 */ 00008 public function get_routes() { 00009 return array( 00010 new ExactMatchRoute('jcssmanager/compress', $this, 'jcssmanager_compress', new ConsoleOnlyRenderDecorator()), 00011 00012 ); 00013 } 00014 00015 public function action_jcssmanager_compress(PageData $page_data) { 00016 $err = JCSSManager::collect_and_compress(); 00017 $page_data->status = $err; 00018 } 00019 }