本文整理汇总了PHP中CFileman::GetFileTemplates方法的典型用法代码示例。如果您正苦于以下问题:PHP CFileman::GetFileTemplates方法的具体用法?PHP CFileman::GetFileTemplates怎么用?PHP CFileman::GetFileTemplates使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CFileman
的用法示例。
在下文中一共展示了CFileman::GetFileTemplates方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$filesrc_tmp = $f->GetContents();
}
else
{
$site_template = false;
$rsSiteTemplates = CSite::GetTemplateList($site);
while($arSiteTemplate = $rsSiteTemplates->Fetch())
{
if(strlen($arSiteTemplate["CONDITION"])<=0)
{
$site_template = $arSiteTemplate["TEMPLATE"];
break;
}
}
$arTemplates = CFileman::GetFileTemplates(LANGUAGE_ID, array($site_template));
if(strlen($template)>0)
{
for ($i=0; $i<count($arTemplates); $i++)
{
if($arTemplates[$i]["file"] == $template)
{
$filesrc_tmp = CFileman::GetTemplateContent($arTemplates[$i]["file"], LANGUAGE_ID, array($site_template));
break;
}
}
}
else
$filesrc_tmp = CFileman::GetTemplateContent($arTemplates[0]["file"], LANGUAGE_ID, array($site_template));
}
示例2: bitrix_sessid_post
<?php
if ($backnewurl == "Y") {
?>
<input type="hidden" name="backnewurl" value="Y"><?php
}
?>
<?php
echo bitrix_sessid_post();
?>
<?php
$aTabs = array(array("DIV" => "edit1", "TAB" => GetMessage("FILEMAN_TAB1"), "ICON" => "fileman", "TITLE" => GetMessage("FILEMAN_TAB1_ALT")));
$tabControl = new CAdminTabControl("tabControl", $aTabs);
$tabControl->Begin();
$tabControl->BeginNextTab();
$arTemplates = CFileman::GetFileTemplates();
?>
<tr>
<td><label for="bxfm_sectionname" style="font-weight: bold;"><?php
echo GetMessage("FILEMAN_NEWFOLDER_SEACTION_NAME");
?>
</label></td>
<td><input type="text" id="bxfm_sectionname" name="sectionname" value="<?php
echo htmlspecialcharsex($sectionname);
?>
" size="30" maxlength="255"></td>
</tr>
<tr>
<td width="40%"><label for="bxfm_foldername" style="font-weight: bold;"><?php
echo GetMessage("FILEMAN_NEWFOLDER_NAME");
?>