Gets the title of the document. Instead use:
$document=& JFactory::getDocument();
$title = $document->getTitle();
Returns Menu ItemId for the specified content item
getPath( varname : string, user_option : string=null ) : string
Deprecated; use of this method is no longer advised.
Determines path to a resource. varname (resource type) can be front, html, front_
html, toolbar, toolbar_html, toolbar_default, toolbar_front, admin, admin_
html, admin_functions, class, helper, com_xml, mod0_xml, mod1_xml, plg_xml,
or menu_xml. user_option refers to a user-related option, for example com_content.
Instead use:
$path = JApplicationHelper::getPath($varname, $user_option);
Parameters varname User_option type
[user_option] User option
Returns Path
&getRouter( ) : JRouter
Gets the application router object.
Returns Application router object
getStaticContentCount( ) : int
Deprecated; use of this method is no longer advised.
Counts the number of menu items that are static content (content_typed). Instead use:
$menus = &JMenu::getInstance();
$count = count($menus->getItems('type', 'content_typed'));
Returns Number of menu items that are static content
getTemplate( ) : string
Gets the name of the application template.
Pages:
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561