本文整理汇总了PHP中CFileMan::GetPropstypes方法的典型用法代码示例。如果您正苦于以下问题:PHP CFileMan::GetPropstypes方法的具体用法?PHP CFileMan::GetPropstypes怎么用?PHP CFileMan::GetPropstypes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CFileMan
的用法示例。
在下文中一共展示了CFileMan::GetPropstypes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: urlencode
<?php
} else {
if ($_GET['subdialog'] == 'Y') {
echo "<script>structReload('" . urlencode($pathToEdit) . "');</script>";
$popupWindow->Close(false);
} else {
$popupWindow->Close(true, $relativePath);
}
}
die;
}
}
//Properties from fileman settings
$arFilemanProperties = array();
if (CModule::IncludeModule("fileman") && is_callable(array("CFileMan", "GetPropstypes"))) {
$arFilemanProperties = CFileMan::GetPropstypes($site);
}
//Properties from page
$arDirProperties = array();
if ($strWarning != "" && isset($_POST["PROPERTY"]) && is_array($_POST["PROPERTY"])) {
//Restore post values if error occured
foreach ($_POST["PROPERTY"] as $arProperty) {
if (isset($arProperty["VALUE"]) && strlen($arProperty["VALUE"]) > 0) {
$arDirProperties[$arProperty["CODE"]] = $arProperty["VALUE"];
}
}
} else {
$arPageSlice = ParseFileContent($fileContent);
$arDirProperties = $arPageSlice["PROPERTIES"];
}
//All file properties. Includes properties from root folders
示例2: GetMessage
</td>
<td class="adm-detail-content-cell-r">
<table cellPadding="2" cellSpacing="2" border="0" width="100%">
<tr class="heading">
<td align="center" width="40%"><b><?php
echo GetMessage('FILEMAN_OPTION_PROPS_TYPE');
?>
</b></td>
<td align="center" width="60%"><b><?php
echo GetMessage('FILEMAN_OPTION_PROPS_NAME');
?>
</b></td>
</tr>
<?php
$i = 0;
foreach (CFileMan::GetPropstypes($siteList[$j]["ID"]) as $key => $val) {
?>
<tr>
<td><input type="text" name="propstypes_<?php
echo htmlspecialcharsbx($siteList[$j]["ID"]);
?>
_<?php
echo $i;
?>
_type" value="<?php
echo htmlspecialcharsbx($key);
?>
" style="width:100%; -moz-box-sizing: border-box; box-sizing: border-box;"></td>
<td><input type="text" name="propstypes_<?php
echo htmlspecialcharsbx($siteList[$j]["ID"]);
?>