문제

I want to get Joomla menu description in mod_menu/default.php . How can i get it to modify?

Joomla menu description

도움이 되었습니까?

해결책

You can query the database from your module to get the Menu Description of your desired menu:

The code will look like:

$db = JFactory::getDbo();

$query = $db->getQuery( true );
$query->select( 'description' )
    ->from( '#__menu_types' )
    ->where( 'id = '{your menu item id, e.g. 1}' );

$db->setQuery( $query );
$description = $db->loadResult();
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top