Parameters [component] Component being invoked
enqueueMessage( msg : string='', msgType : string='message' ) :
void
Adds a new message to the application message queue. Clears the session message queue.
Parameters msg Message
[msgType] Type of message
getBasePath( client : int=0, addTrailingSlash : boolean=true ) : string
Deprecated; use of this method is no longer advised.
Gets the base path to application entry point, not including the file name. Instead use:
$basePath = JURI::base();
Parameters [client] Deprecated, no effect
[addTrailingSlash] Deprecated, no effect
Returns Path to application entry point, not including the file name
Appendix
[ 401 ]
getBlogCategoryCount( ) : int
Deprecated; use of this method is no longer advised.
Counts the number of menu items that are blog categories (content_blog_category).
Instead use:
$menus = &JMenu::getInstance();
$count = count($menus->getItems('type', 'content_blog_category'));
Returns Number of menu items that are blog categories
getBlogSectionCount( ) : int
Deprecated; use of this method is no longer advised.
Pages:
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558