mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
0c41a97a8b
API Add HasRequestHandler interface API Refactor Link() and url handling behaviour from Controller into RequestHandler API RequestHandler classes now must define url_segment to have a default Link() API Clean up redirectBack()
17 lines
290 B
PHP
17 lines
290 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Control;
|
|
|
|
/**
|
|
* Indicator for a class which cannot handle requests directly, but is able to
|
|
* generate a delegate for those requests.
|
|
*/
|
|
interface HasRequestHandler
|
|
{
|
|
|
|
/**
|
|
* @return RequestHandler
|
|
*/
|
|
public function getRequestHandler();
|
|
}
|