当前位置: 首页>>代码示例>>PHP>>正文


PHP CFileMan::GetPropstypes方法代码示例

本文整理汇总了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
开发者ID:k-kalashnikov,项目名称:geekcon_new,代码行数:31,代码来源:file_new.php

示例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"]);
        ?>
开发者ID:mrdeadmouse,项目名称:u136006,代码行数:31,代码来源:options.php


注:本文中的CFileMan::GetPropstypes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。