2013-09-30 71 views
1

我有一個Joomla模板,它不在我的一個頁面上顯示模塊。該模塊已發佈並分配給常規發佈的菜單項。Joomla頁面上沒有顯示的模塊(常規菜單項)

經過一番研究,我發現這個問題可能是由於模板的疊加。這裏是我的module.php文件......這裏有什麼會導致模塊不顯示在特定頁面上?

感謝,

<?php 
defined('_JEXEC') or die; 

function modChrome_themeHtml5($module, &$params, &$attribs) { 
    $moduleTag  = $params->get('module_tag'); 
    $headerTag  = htmlspecialchars($params->get('header_tag')); 
    $headerClass = $params->get('header_class'); 
    $bootstrapSize = $params->get('bootstrap_size'); 
    $moduleClass = !empty($bootstrapSize) ? ' span' . (int) $bootstrapSize . '' : ''; 
    $moduleClassSfx = htmlspecialchars($params->get('moduleclass_sfx')); 

    if (!empty ($module->content)){ 
     $html = "<{$moduleTag} class=\"moduletable {$moduleClassSfx} {$moduleClass}\">"; 

     if ((bool) $module->showtitle){ 
      $html .= "<{$headerTag} class=\"moduleTitle {$headerClass}\">{$module->title}  </{$headerTag}>"; 
     } 

     $html .= $module->content; 
     $html .= "</{$moduleTag}>"; 

     echo $html; 
    } 
} 


function modChrome_html5nosize($module, &$params, &$attribs){ 
    $moduleTag  = $params->get('module_tag'); 
    $headerTag  = htmlspecialchars($params->get('header_tag')); 
    $headerClass = $params->get('header_class'); 
    $bootstrapSize = $params->get('bootstrap_size'); 
    //$moduleClass = !empty($bootstrapSize) ? ' span' . (int) $bootstrapSize . '' : ''; 
    $moduleClassSfx = htmlspecialchars($params->get('moduleclass_sfx')); 

    if (!empty ($module->content)){ 
     $html = "<{$moduleTag} class=\"moduletable {$moduleClassSfx}\">"; 

     if ((bool) $module->showtitle){ 
      $html .= "<{$headerTag} class=\"moduleTitle {$headerClass}\">{$module->title}</{$headerTag}>"; 
     } 

     $html .= $module->content; 
     $html .= "</{$moduleTag}>"; 

     echo $html; 
    } 
} 



function modChrome_modal($module, &$params, &$attribs){ 
    $moduleTag  = $params->get('module_tag'); 
    $headerTag  = htmlspecialchars($params->get('header_tag')); 
    $headerClass = $params->get('header_class'); 
    $bootstrapSize = $params->get('bootstrap_size'); 
    // $moduleClass = !empty($bootstrapSize) ? ' span' . (int) $bootstrapSize . '' : ''; 
    $moduleClassSfx = htmlspecialchars($params->get('moduleclass_sfx')); 

    if (!empty ($module->content)){ 
     $html = "<div class=\"modal fade moduletable {$moduleClassSfx} loginPopup\" id=\"modal\">"; 
     $html .= "<button type=\"button\" class=\"close modalClose\">×</button>"; 

     if ((bool) $module->showtitle){ 
      $html .= "<div class=\"modal-header\">"; 
      $html .= "<{$headerTag} class=\"{$headerClass}\">{$module->title}</{$headerTag}>"; 
      $html .= "</div>"; 
     } 

     $html .= "<div class=\"modal-body\">"; 
     $html .= $module->content; 
     $html .= "</div>"; 

     $html .= "</{$moduleTag}>"; 

     echo $html; 
    } 
} 

回答

2

這可能是如果(!empty ($module->content))

我們不能從只盯着代碼,以便確認。嘗試通過逐個註釋掉函數中的代碼來自行調試它,並查看問題出現在哪個函數中。這是最簡單和最快的方式。

相關問題