Advertisement

Rendering a module inside a component

For Joomla! 1.5 Coding related discussions, please use: http://groups.google.com/group/joomla-dev-general
Locked
bfalcao
Joomla! Apprentice
Joomla! Apprentice
Posts: 19
Joined: Tue Dec 19, 2006 11:41 pm

Rendering a module inside a component

Post by bfalcao » Fri Dec 28, 2007 2:19 am

Hi guys,

I am using Joomla 1.5 RC3.
Now, I made a component where at a certain part I need to get and render a module (let's say "mod_helloword") inside of that frontend component.
How can that be done ? (logically using PHP code).

Thanks in advance.
Bruno

Advertisement
User avatar
infograf768
Joomla! Master
Joomla! Master
Posts: 19133
Joined: Fri Aug 12, 2005 3:47 pm
Location: **Translation Matters**

Re: Rendering a module inside a component

Post by infograf768 » Fri Dec 28, 2007 9:04 am

Hope someone can help you but, in any case, switch to last SVN/nightly build or at least RC4 to go on testing.
Jean-Marie Simonet / infograf
---------------------------------
ex-Joomla Translation Coordination Team • ex-Joomla! Production Working Group

User avatar
dkarlovi
Joomla! Intern
Joomla! Intern
Posts: 95
Joined: Wed Sep 26, 2007 10:59 am
Contact:

Re: Rendering a module inside a component

Post by dkarlovi » Fri Dec 28, 2007 12:56 pm

bfalcao wrote: Now, I made a component where at a certain part I need to get and render a module (let's say "mod_helloword") inside of that frontend component.
How can that be done ? (logically using PHP code).
I'm rendering modules inside a module, you can do it like this:

Code: Select all

<?php
$zone = "user1";
$modules =& JModuleHelper::getModules($zone);
foreach ($modules as $module){
	echo JModuleHelper::renderModule($module);
}
?>
It's without chrome, but you'll manage from there. ;)

bfalcao
Joomla! Apprentice
Joomla! Apprentice
Posts: 19
Joined: Tue Dec 19, 2006 11:41 pm

Re: Rendering a module inside a component

Post by bfalcao » Fri Dec 28, 2007 1:17 pm

Ok guys I think I discovered it.

Basically the code to load, for instance, the mod_login module inside a component should be something like:

Code: Select all

	$document	= &JFactory::getDocument();
	$renderer	= $document->loadRenderer('module');
	$params	= array('style'=>$style);

	echo $renderer->render(JModuleHelper::getModule('mod_login'), $params);

In this case I made the $params array with an example params index there called 'style', but you guys get the idea :)

Thanks mates!

User avatar
RobS
Joomla! Ace
Joomla! Ace
Posts: 1366
Joined: Mon Dec 05, 2005 10:17 am
Location: New Orleans, LA, USA
Contact:

Re: Rendering a module inside a component

Post by RobS » Fri Dec 28, 2007 7:18 pm

There is a easier way:

Code: Select all

$module = &JModuleHelper::getModule('mod_module');
$html = JModuleHelper::renderModule($module);
echo $html;
Rob Schley - Open Source Matters
Webimagery - http://www.webimagery.net/ - Professional Consulting Services
JXtended - http://www.jxtended.com/ - Free and Commercial Joomla! Extensions

User avatar
Danayel
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 236
Joined: Sun Feb 11, 2007 4:59 am
Location: Nagoya, Japan
Contact:

Re: Rendering a module inside a component

Post by Danayel » Mon Apr 07, 2008 5:34 am

I could just be missing something here, but there seems to be a major problem with all of the above mentioned code.

And that is when you want to load a specific instance of a module which has multiple instances.

using :

Code: Select all

    $module = &JModuleHelper::getModule('mod_module');
    $html = JModuleHelper::renderModule($module);
    echo $html;
Will render a module using the parameters for the first instance created. This is especially apparent if you try for example to load 2 joomla menus. For arguments sake lets use Main Menu and User Menu.

If you try to render these using the JModuleHelper then you get both of them printing out the Main Menu.

There was a variation of it where you could pass in parameters, but I have tried every example given and tried at least 5 or 6 different ways to format the parameter list but it seems to just ignore them completely.

Is there a special way for entering the params for a module call or is there a way to call a module by the id that I am missing?
NinjaForge - More than 60 Professional, Open Source, Web 2.0 Extensions
http://ninjaforge.com - Get on the cutting edge.

RavenLife
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 193
Joined: Sun Jul 23, 2006 1:03 am

Re: Rendering a module inside a component

Post by RavenLife » Tue Apr 08, 2008 3:45 pm

would like to know the answer to this too

User avatar
sastrugi
Joomla! Intern
Joomla! Intern
Posts: 92
Joined: Tue Aug 23, 2005 2:08 pm
Contact:

Re: Rendering a module inside a component

Post by sastrugi » Fri Apr 11, 2008 11:33 am

Anyone know if there's a definitive answer to this?

Has @DAnayel missed something or is there something missing from the suggestions earlier in the thread.

I'd really like if people could post opinions; has it worked for you?? If so what did you do?


Thanks guys
Steve

User avatar
sastrugi
Joomla! Intern
Joomla! Intern
Posts: 92
Joined: Tue Aug 23, 2005 2:08 pm
Contact:

Re: Rendering a module inside a component

Post by sastrugi » Sun Apr 13, 2008 1:46 pm

Just a note to all to make sure that there's no confusing that my post in this thread wasn't because of a potential "conflict of interest" that I was somehow trying to hide from everyone.

First of all, you might notice that I've changed my account/avatar details ~ this change reflects something that is very, very new to me but I've been around here using this same user name for a long time.

Ninja Hosting has come about because I have a real and lasting interest in Joomla (and I am personally sick and tired of crap web hosts who don't know what they're doing!!). Anyhoo..

Secondly, from a personal [coding] interest point of view I am interested in seeing if there is a resolution to this issue?

Has anyone had any real success with the techniques variously outlined above?


...ps it would be great if I/we could let Dan know that he's missed something obvious ;)


I've just noticed that there have been almost 600 reads of this thread, so there's quite a bit of interest out there.


Thanks. Party on Joomladudes
Steve

huggyb
Joomla! Fledgling
Joomla! Fledgling
Posts: 4
Joined: Mon Oct 01, 2007 2:59 pm

Re: Rendering a module inside a component

Post by huggyb » Tue Apr 15, 2008 3:19 pm

Hi,
I too am interested in this as i am creating a component whereby i'd like to embed modules within it as necessary. I see the issue with using

Code: Select all

$module = &JModuleHelper::getModule('mod_module');
as it will not pick up a specific 'instance' of the module.
However, it is stated that it you can also load by real name e.g.

Code: Select all

$module = &JModuleHelper::getModule('Module Name');
which should get you a specific instance.
However, this then links to this topic http://forum.joomla.org/viewtopic.php?f=304&t=254805.
Here, it can be seen that the name passed to getModule() will never match that from the database as $custom will always be false if the module is prefixed mod_

From JModuleHelper::_load()

Code: Select all

for($i = 0; $i < $total; $i++)
{
    //determine if this is a custom module
    $file                    = $modules[$i]->module;
    $custom                  = substr( $file, 0, 4 ) == 'mod_' ?  0 : 1;
    $modules[$i]->user       = $custom;
    // CHECK: custom module name is given by the title field, otherwise it's just 'om' ??
    $modules[$i]->name       = $custom ? $modules[$i]->title : substr( $file, 4 );
    $modules[$i]->style      = null;
    $modules[$i]->position   = strtolower($modules[$i]->position);
}
Also, it will never be 'om' as $file is the module, it will be 'mod_module' without the 'mod_' prefix i believe?

I'm not entirely sure what the reference to a custom module serves here either as even if you create a custom module in the admin it has a modle type of 'mod_custom' so still has the 'mod_' prefix.

I'm not sure how much sense i'm making here, I'm hoping someone can tell me if i'm thinking correctly.

Cheers.

bfalcao
Joomla! Apprentice
Joomla! Apprentice
Posts: 19
Joined: Tue Dec 19, 2006 11:41 pm

Re: Rendering a module inside a component

Post by bfalcao » Thu Apr 24, 2008 7:21 pm

Ok guys I think I found the way to pass parameters inside the module.

The code to render the module would be:

Code: Select all

		   $document = &JFactory::getDocument();
		   $renderer = $document->loadRenderer('module');
		   
		   $Module = &JModuleHelper::getModule('mod_fmDataGrid');
		   
		   $Params = "param1=bruno\n\rparam2=chris";
		   $Module->params = $Params;
                                   echo $renderer->render($Module);
Now, on the module, you access both "param1" and "param2" parameters using:

Code: Select all

$params->getValue("param1");
Note that I wrote param1=bruno\n\rparam2=chris. You need this in order for the framework to detect 2 attributes.

Hope this helps !

User avatar
Danayel
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 236
Joined: Sun Feb 11, 2007 4:59 am
Location: Nagoya, Japan
Contact:

Re: Rendering a module inside a component

Post by Danayel » Thu Apr 24, 2008 11:02 pm

ooh good work around!

I will test this later today. If it works I will give you a free membership to my club. (or upgrade if you have one) :D
NinjaForge - More than 60 Professional, Open Source, Web 2.0 Extensions
http://ninjaforge.com - Get on the cutting edge.

bfalcao
Joomla! Apprentice
Joomla! Apprentice
Posts: 19
Joined: Tue Dec 19, 2006 11:41 pm

Re: Rendering a module inside a component

Post by bfalcao » Thu Apr 24, 2008 11:17 pm

Well,Danayel, I think I will have the "Lifetime member" when I tell you that I just am developing the best datagrid that I know, that is phpmydatagrid 2007, as a Joomla module ;).

It will worth the Lifetime member for sure! LOL

It's unbelievable the power of this datagrid inside Joomla 1.5 :)

I am developing it and will create a module package for all the Joomla community next week.

User avatar
juanparati
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 123
Joined: Thu Nov 08, 2007 6:00 pm
Location: Aarhus (Denmark)

Re: Rendering a module inside a component

Post by juanparati » Sun Jan 18, 2009 5:46 pm

bfalcao you are great!!!

Nice trick!!

I will bookmark you post! ;)
From the code to the reality!

sgherzo
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Thu Sep 23, 2010 1:46 pm

Re: Rendering a module inside a component

Post by sgherzo » Thu Sep 23, 2010 1:55 pm

hi all,
yes this workaround works but for a single rendered module,
i need to render the same module with different parameters in a cycle...

i tried to insert it in a cycle, for multiple views of the same module with different parameters, but the framewok shows always the last configured module.

anyone have encountered this problem?

:-(

fikiland
Joomla! Fledgling
Joomla! Fledgling
Posts: 2
Joined: Thu Jun 09, 2011 7:26 am

Re: Rendering a module inside a component

Post by fikiland » Fri Jun 10, 2011 3:12 pm

thank you guyz really nice share
:D

User avatar
burek
Joomla! Intern
Joomla! Intern
Posts: 87
Joined: Fri Nov 17, 2006 12:20 pm

Re: Rendering a module inside a component

Post by burek » Tue Sep 20, 2011 2:02 pm

I've developed a more accurate way to get the desired module by its ID, instead of the title/params combinations.

The usual code to get a module (and display its html content inside a component) is of course:

Code: Select all

$module = &JModuleHelper::getModule('mod_module');
$module->params = '....'; // set params to select a specific instance of a module
$html = JModuleHelper::renderModule($module);
echo $html;
The problem with that approach is that different modules require different params, which makes this less general usage. Further more, with that approach, some modules don't like to be referenced with "mod_modulename", but rather with just "modulename" (for example mod_mainmenu or mod_custom). That's why I decided to make things a little bit more simple.

The ideal way (IMO) would be if we could just write something like:

Code: Select all

$module_id = 123;
$module = &JModuleHelper::getModule($module_id);
This way we would select the module we want directly, but that kind of function doesn't exist in the JModuleHelper class, unfortunately, so I had to make a workaround.

I checked the getModule() method and reduced it to just this:

Code: Select all

//------------------------------------------------------------------------------
function getModuleById($id) {
//------------------------------------------------------------------------------
	//$modules =& JModuleHelper::_load();
	$modules = MyLoadModules();
	$total = count($modules);
	for ($i = 0; $i < $total; $i++) {
		// Match the id of the module
		if ($modules[$i]->id == $id)
			return $modules[$i];
	}
	return null;
}
//------------------------------------------------------------------------------
And voila, I've got what I want, with one problem. The method JModuleHelper::_load(); was enumerating only modules that have the menuId equal to the current ItemId, resulting in a lot of modules being ignored. Hence, I've created a copy of that method, just commenting out the line that makes problems with ItemId stuff ($wheremenu) and named the method MyLoadModules().

So the final result is this:

Code: Select all

//------------------------------------------------------------------------------
function MyLoadModules() {
//------------------------------------------------------------------------------
	// this is the copy of the function JModuleHelper::_load()
	// with ItemId deleted from the SQL query

	global $mainframe, $Itemid;

	$user =& JFactory::getUser();
	$db =& JFactory::getDBO();

	$aid = $user->get('aid', 0);
	$modules = array();
	$wheremenu = isset( $Itemid ) ? ' AND ( mm.menuid = '. (int) $Itemid .' OR mm.menuid = 0 )' : '';

	$query = 'SELECT id, title, module, position, content, showtitle, control, params'
		. ' FROM #__modules AS m'
		. ' LEFT JOIN #__modules_menu AS mm ON mm.moduleid = m.id'
		. ' WHERE m.published = 1'
		. ' AND m.access <= '. (int)$aid
		. ' AND m.client_id = '. (int)$mainframe->getClientId()
//		. $wheremenu
		. ' ORDER BY position, ordering';

	$db->setQuery( $query );

	if (null === ($modules = $db->loadObjectList())) {
		JError::raiseWarning( 'SOME_ERROR_CODE', JText::_( 'Error Loading Modules' ) . $db->getErrorMsg());
		return false;
	}

	$total = count($modules);
	for($i = 0; $i < $total; $i++)
	{
		//determine if this is a custom module
		$file                    = $modules[$i]->module;
		$custom                 = substr( $file, 0, 4 ) == 'mod_' ?  0 : 1;
		$modules[$i]->user      = $custom;
		// CHECK: custom module name is given by the title field, otherwise it's just 'om' ??
		$modules[$i]->name        = $custom ? $modules[$i]->title : substr( $file, 4 );
		$modules[$i]->style        = null;
		$modules[$i]->position    = strtolower($modules[$i]->position);
	}
	return $modules;
}
//------------------------------------------------------------------------------
function getModuleById($id) {
//------------------------------------------------------------------------------
	// this is the copy of the function JModuleHelper::getModule()
	// with modified body to search for module by its id instead of title

	//$modules =& JModuleHelper::_load();
	$modules = MyLoadModules();
	$total = count($modules);
	for ($i = 0; $i < $total; $i++) {
		// Match the id of the module
		if ($modules[$i]->id == $id)
			return $modules[$i];
	}
	return null;
}
//------------------------------------------------------------------------------
That's basically it. Now you just select the module you want and render it or read its params or whatever you need to do with it:

Code: Select all

$module = getModuleById(123); // the ID of the module (123) we can see in the backend: Extensions - Modules
$module->params = "param1=john\n\rparam2=doe"; // delimited by "\n\r"
echo JModuleHelper::renderModule($module);
P.S. don't forget to add "jimport('joomla.application.module.helper');" at the top of your php script to include JModuleHelper class.

palitre
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Fri Oct 21, 2011 7:25 am

Re: Rendering a module inside a component

Post by palitre » Fri Oct 21, 2011 7:27 am

Hi there, just became aware of your blog through Google, and found that it is truly informative. I am gonna watch out for brussels. I’ll appreciate if you continue this in future. A lot of people will be benefited from your writing. Cheers!

Advertisement

Locked

Return to “Joomla! 1.5 Coding”