當前位置: 首頁>>代碼示例>>PHP>>正文


PHP GoogleSitemapGenerator::IsXslEnabled方法代碼示例

本文整理匯總了PHP中GoogleSitemapGenerator::IsXslEnabled方法的典型用法代碼示例。如果您正苦於以下問題:PHP GoogleSitemapGenerator::IsXslEnabled方法的具體用法?PHP GoogleSitemapGenerator::IsXslEnabled怎麽用?PHP GoogleSitemapGenerator::IsXslEnabled使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在GoogleSitemapGenerator的用法示例。


在下文中一共展示了GoogleSitemapGenerator::IsXslEnabled方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: HtmlShowOptionsPage


//.........這裏部分代碼省略.........
                ?>
<label for="sm_b_style_default"><input <?php 
                echo $useDefStyle ? 'checked="checked" ' : '';
                ?>
 type="checkbox" id="sm_b_style_default" name="sm_b_style_default" onclick="document.getElementById('sm_b_style').disabled = this.checked;" /> <?php 
                _e('Use default', 'sitemap');
                ?>
</label> <?php 
            }
            ?>
							</li>
							<li>
								<label for="sm_b_baseurl"><?php 
            _e('Override the base URL of the sitemap:', 'sitemap');
            ?>
 <input type="text" name="sm_b_baseurl" id="sm_b_baseurl"  value="<?php 
            echo esc_attr($this->sg->GetOption("b_baseurl"));
            ?>
" /></label><br />
								<small><?php 
            _e('Use this if your blog is in a sub-directory, but you want the sitemap be located in the root. Requires .htaccess modification.', 'sitemap');
            ?>
 <a href="<?php 
            echo $this->sg->GetRedirectLink('sitemap-help-options-adv-baseurl');
            ?>
"><?php 
            _e('Learn more', 'sitemap');
            ?>
</a></small>
							</li>
							<li>
								<label for="sm_b_html">
									<input type="checkbox" id="sm_b_html" name="sm_b_html" <?php 
            if (!$this->sg->IsXslEnabled()) {
                echo 'disabled="disabled"';
            }
            ?>
  <?php 
            echo $this->sg->GetOption("b_html") == true && $this->sg->IsXslEnabled() ? "checked=\"checked\"" : "";
            ?>
 />
									<?php 
            _e('Include sitemap in HTML format', 'sitemap');
            ?>
  <?php 
            if (!$this->sg->IsXslEnabled()) {
                _e('(The required PHP XSL Module is not installed)', 'sitemap');
            }
            ?>
								</label>
							</li>
							<li>
								<label for="sm_b_stats">
									<input type="checkbox" id="sm_b_stats" name="sm_b_stats" <?php 
            echo $this->sg->GetOption("b_stats") == true ? "checked=\"checked\"" : "";
            ?>
 />
									<?php 
            _e('Allow anonymous statistics (no personal information)', 'sitemap');
            ?>
								</label> <label><a href="<?php 
            echo $this->sg->GetRedirectLink('sitemap-help-options-adv-stats');
            ?>
"><?php 
            _e('Learn more', 'sitemap');
            ?>
開發者ID:popovdenis,項目名稱:kmst,代碼行數:67,代碼來源:sitemap-ui.php


注:本文中的GoogleSitemapGenerator::IsXslEnabled方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。