Ошибка в работе фотогалереи MorfeoShow

Тема в разделе "Кодировки, ошибки отображения (крякозябры)", создана пользователем isHiss, 04.03.2010.

  1. Offline

    isHiss Недавно здесь

    Регистрация:
    04.03.2010
    Сообщения:
    2
    Симпатии:
    0
    Пол:
    Женский
    при переходе в раздел фотогалереи выдается ошибка

    Parse error: parse error, unexpected $end in d:\home\virtwww\______________\administrator\components\com_morfeoshow\admin.morfeoshow.html.php on line 146

    но эта строка ПУСТАЯ, закрывающие теги вроде бы тоже на месте

    вот код страницы

    Код (PHP):
    1. <?php
    2. /**
    3. * @package      Joomla
    4. * @subpackage   com_morfeoshow
    5. * @copyright    Copyright (C) Vamba & Matthew Thomson. All rights reserved.
    6. * @license      GNU/GPL.
    7. * @author       Vamba (.joomlaitalia.com) & Matthew Thomson (ignitejoomlaextensions.com)
    8. * @based on     com_morfeoshow
    9. * @author       Matthew Thomson (ignitejoomlaextensions.com)
    10. * Joomla! and com_morfeoshow are free software. This version may have been modified pursuant
    11. * to the GNU General Public License, and as distributed they include or
    12. * are derivative of works licensed under the GNU General Public License or
    13. * other free or open source software licenses.
    14. */
    15.  
    16. defined( '_JEXEC' ) or die( 'Restricted access' );
    17. jimport( 'joomla.application.component.view');
    18. jimport( 'joomla.html.pane' );
    19.  
    20.  
    21. class HTML_morfeoshow
    22. {
    23. function showPostinstall()
    24. {
    25.     global $folder;
    26.         JSubMenuHelper::addEntry(false);
    27.         include( JPATH_COMPONENT.DS.'view'.DS.'postinstall.php' );
    28.  
    29. }
    30.  
    31. function showInfo()
    32. {
    33.     global $folder;
    34.         JSubMenuHelper::addEntry(JText::_('Galleries'), 'index.php?option=com_morfeoshow');
    35.         JSubMenuHelper::addEntry(JText::_('Settings'), 'index.php?option=com_morfeoshow&task=showSettings');
    36.         JSubMenuHelper::addEntry(JText::_('Info'), 'index.php?option=com_morfeoshow&task=info',true );
    37.         JSubMenuHelper::addEntry(JText::_('Back'), 'index.php?option=com_morfeoshow&task=back');       
    38.         include( JPATH_COMPONENT.DS.'view'.DS.'info.php' );
    39. }  
    40.  
    41. function showGallerys($option, &$rows, &$pageNav, &$lists, $params)
    42. {
    43.         global $params_morfeo, $html;
    44.         JSubMenuHelper::addEntry(JText::_('Galleries'), 'index.php?option=com_morfeoshow',true);
    45.         JSubMenuHelper::addEntry(JText::_('Settings'), 'index.php?option=com_morfeoshow&task=showSettings');
    46.         JSubMenuHelper::addEntry(JText::_('Info'), 'index.php?option=com_morfeoshow&task=info');
    47.         require_once(JPATH_COMPONENT.DS.'settings.php');
    48.         include( JPATH_COMPONENT.DS.'view'.DS.'showgallery.php' );     
    49. }
    50.  
    51. ################
    52. # Manage Galleries
    53. ################   
    54.  
    55. function addGallery($option, &$lists, $folder, $vamba)
    56. {
    57.         global $params_morfeo;
    58.         JSubMenuHelper::addEntry(JText::_('Galleries'), 'index.php?option=com_morfeoshow',true);
    59.         JSubMenuHelper::addEntry(JText::_('Settings'), 'index.php?option=com_morfeoshow&task=showSettings');
    60.         JSubMenuHelper::addEntry(JText::_('Info'), 'index.php?option=com_morfeoshow&task=info');
    61.         JSubMenuHelper::addEntry(JText::_('Back'), 'index.php?option=com_morfeoshow&task=back');       
    62.         require_once(JPATH_COMPONENT.DS.'settings.php');
    63.         $editor =& JFactory::getEditor();
    64.         $pane   =& JPane::getInstance('sliders');
    65.         include( JPATH_COMPONENT.DS.'view'.DS.'addgallery.php' );  
    66. }
    67.    
    68. function configureGallery(&$row, &$lists, $option, $folder)
    69. {
    70.         JSubMenuHelper::addEntry(JText::_('Galleries'), 'index.php?option=com_morfeoshow',true);
    71.         JSubMenuHelper::addEntry(JText::_('Settings'), 'index.php?option=com_morfeoshow&task=showSettings');
    72.         JSubMenuHelper::addEntry(JText::_('Info'), 'index.php?option=com_morfeoshow&task=info');
    73.         JSubMenuHelper::addEntry(JText::_('Back'), 'index.php?option=com_morfeoshow&task=back');       
    74.         require_once(JPATH_COMPONENT.DS.'settings.php');
    75.         $editor =& JFactory::getEditor();
    76.         $pane   =& JPane::getInstance('sliders');
    77.         include( JPATH_COMPONENT.DS.'view'.DS.'editgallery.php' ); 
    78. }
    79.  
    80. ################
    81. # Manage Images
    82. ################
    83.  
    84. function managePhotos($row, $option, $id)
    85. {
    86.         global $image, $tzoffset;
    87.         JSubMenuHelper::addEntry(JText::_('Galleries'), 'index.php?option=com_morfeoshow',true);
    88.         JSubMenuHelper::addEntry(JText::_('Settings'), 'index.php?option=com_morfeoshow&task=showSettings');
    89.         JSubMenuHelper::addEntry(JText::_('Info'), 'index.php?option=com_morfeoshow&task=info');
    90.         JSubMenuHelper::addEntry(JText::_('Back'), 'index.php?option=com_morfeoshow&task=back');       
    91.         require_once(JPATH_COMPONENT.DS.'settings.php');
    92. //      $date   =& JFactory::getDate(@$image->imgdate, $tzoffset);
    93.         $date   = JHTML::_('date',  @$image->imgdate, '%Y-%m-%d' );
    94.         $editor =& JFactory::getEditor();
    95.         include( JPATH_COMPONENT.DS.'view'.DS.'addphoto.php' );    
    96. }
    97.  
    98. function editDes($row, $img_row, $option, $id)
    99. {
    100.         JSubMenuHelper::addEntry(JText::_('Galleries'), 'index.php?option=com_morfeoshow',true);
    101.         JSubMenuHelper::addEntry(JText::_('Settings'), 'index.php?option=com_morfeoshow&task=showSettings');
    102.         JSubMenuHelper::addEntry(JText::_('Info'), 'index.php?option=com_morfeoshow&task=info');
    103.         JSubMenuHelper::addEntry(JText::_('Back'), 'index.php?option=com_morfeoshow&task=back');       
    104.         require_once(JPATH_COMPONENT.DS.'settings.php');
    105.         $editor =& JFactory::getEditor();
    106.         include( JPATH_COMPONENT.DS.'view'.DS.'editphoto.php' );   
    107. }
    108.  
    109. ################
    110. # List of Images x Gallery
    111. ################
    112. function Photos($row, $rows, $option, $id, $pageNav, &$lists)
    113. {
    114.         global $image, $tzoffset;
    115.         JSubMenuHelper::addEntry(JText::_('Galleries'), 'index.php?option=com_morfeoshow',true);
    116.         JSubMenuHelper::addEntry(JText::_('Settings'), 'index.php?option=com_morfeoshow&task=showSettings');
    117.         JSubMenuHelper::addEntry(JText::_('Info'), 'index.php?option=com_morfeoshow&task=info');
    118.         JSubMenuHelper::addEntry(JText::_('Back'), 'index.php?option=com_morfeoshow&task=back');       
    119.         require_once(JPATH_COMPONENT.DS.'settings.php');
    120.         include( JPATH_COMPONENT.DS.'view'.DS.'photo.php' );       
    121. }
    122.  
    123. ################
    124. # Config/Settings
    125. ################
    126. function showSettings( $option, &$params, $rows, $lists )
    127. {
    128.         global $folder, $errors;
    129.         JSubMenuHelper::addEntry(JText::_('Galleries'), 'index.php?option=com_morfeoshow');
    130.         JSubMenuHelper::addEntry(JText::_('Settings'), 'index.php?option=com_morfeoshow&task=showSettings',true);
    131.         JSubMenuHelper::addEntry(JText::_('Info'), 'index.php?option=com_morfeoshow&task=info');
    132.         JSubMenuHelper::addEntry(JText::_('Back'), 'index.php?option=com_morfeoshow&task=back');       
    133.         require_once(JPATH_COMPONENT.DS.'settings.php');       
    134.         include( JPATH_COMPONENT.DS.'view'.DS.'config.php' );
    135. }
    136.  
    137. ################
    138. # Menu item
    139. ################
    140. function menu( $id, $option, $params, $titologalleria, $titologallerialias, $lists )
    141. {
    142.         global $errors, $vocedimenu;
    143.         require_once(JPATH_COMPONENT.DS.'settings.php');       
    144. ?>
    145. }


    Подскажите пожалуйста в чем ошибка............
     
  2.  
  3. Offline

    isHiss Недавно здесь

    Регистрация:
    04.03.2010
    Сообщения:
    2
    Симпатии:
    0
    Пол:
    Женский
    ошибку нашла, все работает
     

Поделиться этой страницей

Загрузка...