开发者

Joomla Seminar Component customisation

开发者 https://www.devze.com 2023-04-08 19:56 出处:网络
I am using the Joomla Seminar component , http://extensions.joomla.org/extensions/calendars-a-events/events/events-registration/8426

I am using the Joomla Seminar component , http://extensions.joomla.org/extensions/calendars-a-events/events/events-registration/8426

I would like to retrieve the query to return th开发者_JS百科e organiser's name, thus search the query across the component files.

I get stuck at this function :$config = &JComponentHelper::getParams('com_seminar');

How do I retrieve the SQL query from here? Any pointers appreciated. Thanks a lot!


If you want to get organiser's name by seminar number / code:

$number = "123"; // here the number to search
$db = &JFactory::getDBO();
$q = "SELECT name FROM #__users u INNER JOIN #__seminar s ON (u.id=s.publisher) WHERE s.semnum='".$number."'";
$db->setQuery($q);
$organisername = $db->loadResult();

You can change the query as your needs, for example searching by seminar id:

$q = "SELECT name FROM #__users u INNER JOIN #__seminar s ON (u.id=s.publisher) WHERE s.id='".$id."'";
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号