MenuItem Skelett
authorSven Schöling <s.schoeling@linet-services.de>
Mon, 27 Aug 2012 13:41:33 +0000 (15:41 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Wed, 17 Oct 2012 13:50:13 +0000 (15:50 +0200)
SL/MenuItem.pm [new file with mode: 0644]

diff --git a/SL/MenuItem.pm b/SL/MenuItem.pm
new file mode 100644 (file)
index 0000000..7accaf9
--- /dev/null
@@ -0,0 +1,88 @@
+package SL::MenuItem;
+
+sub new {
+  my ($class, %values) = @_;
+
+  my $obj = bless {}, $class;
+  $obj->{ACCESS} = delete $values{ACCESS};
+  $obj->{module} = delete $values{module} || die 'menuitem - need module';
+  $obj->{action} = delete $values{action} || die 'menuitem - need action';
+
+  $obj->{params} = \%values;
+}
+
+sub access {
+
+}
+
+sub ACCESS { $_[0]{ACCESS} }
+sub action { $_[0]{action} }
+sub module { $_[0]{module} }
+sub params { $_[0]{params} }
+
+sub
+
+
+1;
+
+__END__
+
+=encoding utf-8
+
+=head1 NAME
+
+SL::MenuItem - wrapper class for menu items
+
+=head1 SYNOPSIS
+
+  use SL::Menu;
+
+  for my item (Menu->new->menuitems) {
+    next unless $item->access;
+
+    make_your_own_menuentry_from(
+      module => $item->module,
+      action => $iten->action,
+      params => $item->params,
+      name   => $item->name,
+      path   => $item->path,
+      children => $item->children,
+      parent => $item->parent,
+    );
+  }
+
+=head1 DESCRIPTION
+
+This provides some wrapper methods around the raw entries in menu.ini. It sorts through expected information like module and action, wraps access calls for you and gives you tree access to siblings, children and parent elements in the menu structure.
+
+=head1 METHODS
+
+=over 4
+
+=item new
+
+=item access
+
+=item module
+
+=item params
+
+=item name
+
+=item path
+
+=item children
+
+=item parent
+
+=item siblings
+
+=back
+
+=head1 BUGS
+
+=head1 AUTHOR
+
+Sven Schoeling E<lt>s.schoeling@linet-services.deE<gt>
+
+=cut