单个图像上传器的多个图像上传器

时间:2014-02-21 11:05:18

标签: php joomla joomla2.5 joomla-extensions joomla3.0

我正在使用组件创建器在joomla中创建一个组件。在这个组件中,我想一次上传多个图像,而不是只上传一个图像。为了做到这一点,我需要在以下代码中更改什么?

          <?php if (!empty($item->images)):
         $uploadPath = 'components' . '/'. 'com_gallery' . '/' . 'img' .'/' .$item->images;        
       echo '<a href="' . JRoute::_(JUri::base() . $uploadPath, false) . '" target="_blank" title="See the images">' . $item->images . '</a>';
          else:
            echo $item->images;
            endif; ?>               </td>

0 个答案:

没有答案