Closed (fixed)
Project:
Drupal core
Version:
8.0.x-dev
Component:
filter.module
Priority:
Normal
Category:
Task
Assigned:
Reporter:
Created:
22 May 2013 at 19:11 UTC
Updated:
29 Jul 2014 at 22:21 UTC
Jump to comment: Most recent file
Follow-up for #1868772-105: Convert filters to plugins
+++ b/core/modules/filter/lib/Drupal/filter/Annotation/Filter.phpundefined
@@ -0,0 +1,26 @@
+class Filter extends Plugin {
+
+ public $title;
+ public $description = '';
+ public $weight = 0;
+ public $status = FALSE;
+ public $cache = TRUE;
+ public $settings = array();
+
+}
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | filter-2001006-1.patch | 1.65 KB | tim.plunkett |
Comments
Comment #1
tim.plunkettWe had even missed a couple. This should do it.
Comment #2
andypostLooks good
Comment #3
alexpottCommitted 5559cab and pushed to 8.x. Thanks!