summaryrefslogtreecommitdiff
path: root/core/libraries/Task_Definition.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-01-16 05:01:22 +0000
committerBharat Mediratta <bharat@menalto.com>2009-01-16 05:01:22 +0000
commit622da5f3cdf7ccb979334e42e115f0538c8dd00b (patch)
treefb63029be35bedc5ff7a15201c2f6b0c39522d3f /core/libraries/Task_Definition.php
parent72fa5736ff611407c995aac19b06f6bf8c2f8a31 (diff)
Rename Task to Task_Definition to avoid confusion with Task_Model.
Order the finished tasks by update time in the task list.
Diffstat (limited to 'core/libraries/Task_Definition.php')
-rw-r--r--core/libraries/Task_Definition.php51
1 files changed, 51 insertions, 0 deletions
diff --git a/core/libraries/Task_Definition.php b/core/libraries/Task_Definition.php
new file mode 100644
index 00000000..454b39ad
--- /dev/null
+++ b/core/libraries/Task_Definition.php
@@ -0,0 +1,51 @@
+<?php defined("SYSPATH") or die("No direct script access.");
+/**
+ * Gallery - a web based photo album viewer and editor
+ * Copyright (C) 2000-2008 Bharat Mediratta
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or (at
+ * your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+class Task_Definition_Core {
+ public $callback;
+ public $description;
+ public $name;
+ public $severity;
+
+ static function factory() {
+ return new Task_Definition();
+ }
+
+ function callback($callback) {
+ $this->callback = $callback;
+ return $this;
+ }
+
+ function description($description) {
+ $this->description = $description;
+ return $this;
+ }
+
+ function name($name) {
+ $this->name = $name;
+ return $this;
+ }
+
+ function severity($severity) {
+ $this->severity = $severity;
+ return $this;
+ }
+
+}