50 lines
1.3 KiB
Perl
50 lines
1.3 KiB
Perl
package WebGUI::Macro::RootTitle;
|
|
|
|
#-------------------------------------------------------------------
|
|
# WebGUI is Copyright 2001-2009 Plain Black Corporation.
|
|
#-------------------------------------------------------------------
|
|
# Please read the legal notices (docs/legal.txt) and the license
|
|
# (docs/license.txt) that came with this distribution before using
|
|
# this software.
|
|
#-------------------------------------------------------------------
|
|
# http://www.plainblack.com info@plainblack.com
|
|
#-------------------------------------------------------------------
|
|
|
|
use strict;
|
|
use WebGUI::Asset;
|
|
|
|
=head1 NAME
|
|
|
|
Package WebGUI::Macro::RootTitle
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Macro for returning the title of the root for this page.
|
|
|
|
=head2 process ( )
|
|
|
|
If an asset exists in the session object cache and and it's
|
|
topmost parent (root) can be found the title for that asset
|
|
is returned. Otherwise an empty string is returned.
|
|
|
|
=cut
|
|
|
|
#-------------------------------------------------------------------
|
|
sub process {
|
|
my $session = shift;
|
|
return "" unless $session->asset;
|
|
|
|
my $lineage = $session->asset->get("lineage");
|
|
return $session->asset->getTitle
|
|
if (length($lineage) == 6); ##I am the super root.
|
|
|
|
##Get my root.
|
|
$lineage = substr($lineage,0,12);
|
|
my $root = WebGUI::Asset->newByLineage($session,$lineage);
|
|
|
|
return "" unless defined $root;
|
|
return $root->get("title");
|
|
}
|
|
|
|
|
|
1;
|