mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
b0c384d6c1
svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/roa ........ r53150 | ischommer | 2008-04-22 11:12:43 +1200 (Tue, 22 Apr 2008) | 1 line FEATURE Added a "test mode" for /db/build which allows mock-DataObject-subclasses which are just built in a test run ........ r53681 | mrickerby | 2008-04-29 15:26:52 +1200 (Tue, 29 Apr 2008) | 1 line adding default wrapping header and footer methods, and configurable reporting to the TestRunner ........ r53700 | mrickerby | 2008-04-29 16:41:57 +1200 (Tue, 29 Apr 2008) | 1 line FEATURE: adding support for /dev/tests --> DevelopmentAdmin-->tests() --> TestRunner, /dev/tasks --> DevelopmentAdmin-->tasks() --> TaskRunner ........ r53820 | mrickerby | 2008-04-30 19:27:52 +1200 (Wed, 30 Apr 2008) | 1 line BUGFIX fixing up BuildTask interface and task runner action ........ r54200 | sminnee | 2008-05-09 00:28:44 +1200 (Fri, 09 May 2008) | 1 line Added TestSession object to help with the testing of forms ........ r54459 | sminnee | 2008-05-13 17:28:25 +1200 (Tue, 13 May 2008) | 1 line Added a basic menu of options to /dev ........ git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@54456 467b73ca-7a2a-4603-9d3b-597d59a354a9
22 lines
527 B
PHP
22 lines
527 B
PHP
<?php
|
|
|
|
/**
|
|
* Interface for a generic build task. Does not support dependencies. This will simply
|
|
* run a chunk of code when called.
|
|
*
|
|
* To disable the task (in the case of potentially destructive updates or deletes), declare
|
|
* the $Disabled property on the subclass.
|
|
*
|
|
* @todo move from sapphire/testing to sapphire/dev or sapphire/development?
|
|
*/
|
|
abstract class BuildTask {
|
|
|
|
abstract function run($request);
|
|
|
|
public function isDisabled() {
|
|
return (property_exists($this, 'Disabled')) ? true : false;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|