]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/Presenter/RequirementSpecTextBlock.pm
RequirementSpec-Presenter in RequirementSpecTextBlock umbenannt
[kivitendo-erp.git] / SL / Presenter / RequirementSpecTextBlock.pm
diff --git a/SL/Presenter/RequirementSpecTextBlock.pm b/SL/Presenter/RequirementSpecTextBlock.pm
new file mode 100644 (file)
index 0000000..8e2eb81
--- /dev/null
@@ -0,0 +1,24 @@
+package SL::Presenter::RequirementSpecTextBlock;
+
+use strict;
+
+use parent qw(Exporter);
+
+use Exporter qw(import);
+our @EXPORT = qw(requirement_spec_text_block_jstree_data);
+
+use Carp;
+
+use SL::JSON;
+
+sub requirement_spec_text_block_jstree_data {
+  my ($self, $text_block, %params) = @_;
+
+  return {
+    data     => $text_block->title || '',
+    metadata => { id =>         $text_block->id, type => 'textblock' },
+    attr     => { id => "tb-" . $text_block->id, href => $params{href} || '#', class => 'text-block-context-menu' },
+  };
+}
+
+1;