Juan Posted December 6, 2008 at 02:25 AM Share Posted December 6, 2008 at 02:25 AM Saludos!! Estoy usando Agroa Forum y el plugin Agora Autorbot no funciona con jReviews. Me imagino que no será muy dificil de integrar. Este es el código del plugin, alguna idea de como hacerlo? $mainframe->registerEvent( 'onPrepareContent', 'agora_author'); function agora_author (&$row, &$params, $page) { global $database; $database =& JFactory::getDBO(); $query = "SELECT id FROM #__menu WHERE link='index.php?option=com_agora'"; $database->setQuery($query); $agora_Itemid = $database->loadResult(); if (isset($agora_Itemid)) { $agora_profile_path = "index.php?option=com_agora&Itemid=".$agora_Itemid; $query = "SELECT b.id FROM #__users a, #__agora_users b WHERE a.id = b.jos_id AND Name = '". ($row->created_by_alias!='' ? $row->created_by_alias : $row->author)."'"; $database->setQuery($query); $agora_userid = $database->loadResult($query); if($agora_userid != null ) { // Print url to user's profile $row->created_by_alias='<a href="'.JRoute::_($agora_profile_path . '&task=profile&id=' . $agora_userid).'">'.($row->created_by_alias!='' ? $row->created_by_alias : $row->author).'</a>'; } } } ?> Link to comment
Alejandro Posted December 8, 2008 at 12:54 PM Share Posted December 8, 2008 at 12:54 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Juan Posted December 8, 2008 at 07:06 PM Author Share Posted December 8, 2008 at 07:06 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Alejandro Posted December 8, 2008 at 07:45 PM Share Posted December 8, 2008 at 07:45 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Juan Posted December 8, 2008 at 10:09 PM Author Share Posted December 8, 2008 at 10:09 PM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Recommended Posts