Добрый день, подскажите можно ли сохранять в две разных таблицы используя один контроллер? или можно ли передать значение нужной модели в контроллер?Код:function save (){ $model = $this->getModel ('hello'); if ($model->store ()) { $msg = JText::_( 'Greeting Saved!' ); } else { $msg = JText::_( 'Error Saving Greeting' ); } // Check the table in so it can be edited.... we are done with it anyway $link = 'index.php?option=com_hello'; $this->setRedirect ($link, $msg);} вмсесто hello например?
|