BUG add setAjaxEnabledSteps as interface method

This commit is contained in:
Michał Ochman 2012-08-19 12:22:51 +02:00
parent 2e1cfcc65d
commit dc01926525
1 changed files with 8 additions and 1 deletions

View File

@ -24,4 +24,11 @@ interface SilverStripeAwareContextInterface
* @param String $database_name Temp database name
*/
public function setDatabase($database_name);
}
/**
* Marks steps as AJAX steps for special treatment
*
* @param array $ajax_steps Array of step name parts to match
*/
public function setAjaxEnabledSteps($ajax_steps);
}