Хотелось бы чтобы из записи в каталоге можно было создавать тему связанную с этой записью. Есть какие то плагины для этого?
бьюсь над этой проблемкой из иностранного форума вычитал: Код (CODE): Starting at Line 35 there is some code to limit which components are processed: // Don't register the bot functions if we're not rendering a content item. if ($_REQUEST['option'] == 'com_content' || $_REQUEST['option'] == 'com_frontpage' || $_REQUEST['option'] == 'com_events' ) { $_MAMBOTS->registerFunction( 'onPrepareContent', 'botfbDiscuss' ); $_MAMBOTS->registerFunction( 'onAfterDisplayContent', 'botfbReadMore' ); } I assume SOBI2 (com_sobi2) would need to be added here, like this: // Don't register the bot functions if we're not rendering a content item. if ($_REQUEST['option'] == 'com_content' || $_REQUEST['option'] == 'com_frontpage' || $_REQUEST['option'] == 'com_events' ) || $_REQUEST['option'] == 'com_sobi2' ) { $_MAMBOTS->registerFunction( 'onPrepareContent', 'botfbDiscuss' ); $_MAMBOTS->registerFunction( 'onAfterDisplayContent', 'botfbReadMore' ); } Starting at Line 242 the content title, etc. is collected (for JEvents) // The following is an example integration using JEvents if ($_REQUEST['option'] == 'com_events' ) { // Make this appear to be a 'normal' content item by setting up the section, category, title and intro-text. //$row->catid = 1; // Is already set by JEvents // $row->title = 'dummy'; // Is already set by JEvents $row->sectionid = 999; $row->introtext = $row->content; } вот если у кого есть добавка в папку integration специально для sobi2 буду оченно благодарен! ну или хотябы направте несведующего на путь истинный конкретно что этот интегратион интегрирует?