привет народ. пишу модуль для джумлы, нужно сделать несколько настраиваемых параметров (из админки), делаю так: Код (html): <params> <!-- parameter to allow placement of a module class suffix for the module table / xhtml display --> <param name="moduleclass_sfx" type="text" default="" label="Module Class Suffix" description="PARAMMODULECLASSSUFFIX" /> <!-- just gives us a little room between the previous paramter and the next --> <param name="@spacer" type="spacer" default="" label="" description="" /> <!-- A parameter that allows an administrator to modify the number of users that this module will display --> <param name="textColor" type="text" default="black" label="Цвет текста" description="Укажите цвет текста" /> <param name="separator" type="text" default="vs" label="Разделитель" description="Укажите разделитель" /> <param name="@spacer" type="spacer" default="" label="" description="" /> </params> в самом модуле получаю так: Код (PHP): $textColor = $params->get('textColor'); $temp = $params->get('separator'); так вот, $textColor присваивается нормально а в $temp пусто, куда копать?
посмотрел дебагером. при распарсивании в классе видно только 2 элемента, последний textColor. подскажите где смотреть?! ну очень нужно!!!!