<?xml version="1.0" encoding="UTF-8"?>
<ajxpdriver name="fs" label="CONF_MESSAGE[File System (Standard)]" description="CONF_MESSAGE[The most standard access to a filesystem located on the server.]" mixins="filesystem_commons,slug_provider,template_provider" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:../core.ajaxplorer/ajxp_registry.xsd">
    <client_settings icon="plugins/access.fs/icon.png" description_template="{PATH}" iconClass="icon-hdd">
        <resources>
            <i18n namespace="access_fs" path="plugins/access.fs/i18n"/>
            <i18n namespace="openother" path="plugins/access.fs/res/editor.picker" />
            <js className="FSActions" file="plugins/access.fs/res/build/FSActions.js" depends="PydioComponents"/>
        </resources>
    </client_settings>
	<server_settings>
		<param name="PATH" type="string" label="CONF_MESSAGE[Path]" description="CONF_MESSAGE[Absolute path to the folder on the server. You can use AJXP_DATA_PATH and AJXP_INSTALL_PATH to point to Pydio default data path and root install path.]" mandatory="true"/>
		<param name="CREATE" type="boolean" label="CONF_MESSAGE[Create]" description="CONF_MESSAGE[Create folder if it does not exists]" default="true" mandatory="true"/>
        <param name="CHMOD_VALUE" type="string" label="CONF_MESSAGE[File Creation Mask]" description="CONF_MESSAGE[Optionnaly apply a chmod operation. Value must be numeric, like 0777, 0644, etc.]" default="0666"/>
        <param name="PURGE_AFTER" type="integer" label="CONF_MESSAGE[Purge Days (Hard limit)]" description="CONF_MESSAGE[Option to purge documents after a given number of days (even if shared). This require a manual set up of a CRON task. Leave to 0 if you don't wan't to use this feature.]" default="0"/>
        <param name="PURGE_AFTER_SOFT" type="integer" label="CONF_MESSAGE[Purge Days (Soft limit)]" description="CONF_MESSAGE[Option to purge documents after a given number of days (if not shared). This require a manual set up of a CRON task. Leave to 0 if you don't wan't to use this feature.]" default="0"/>
        <param name="DATA_TEMPLATE" type="string" label="CONF_MESSAGE[Data template]" description="CONF_MESSAGE[Path to a directory on the filesystem whose content will be copied to the repository the first time it is loaded.]" default=""/>
        <global_param name="PROBE_REAL_SIZE" type="boolean" label="CONF_MESSAGE[Real Size Probing]" description="CONF_MESSAGE[Use system command line to get the filesize instead of php built-in function (fixes the 2Go limitation)]" default="false"/>
        <global_param name="USE_POSIX" type="boolean" label="CONF_MESSAGE[Use POSIX]" description="CONF_MESSAGE[Use php POSIX extension to read files permissions. Only works on *nix systems.]" default="false"/>
        <global_param name="ZIP_ON_THE_FLY" type="boolean" label="CONF_MESSAGE[Zip downloading files on the fly]" description="CONF_MESSAGE[Directly write the zip file to an output stream which is connected to the user's browser.]" default="false"/>
        <global_param group="MIXIN_MESSAGE[Metadata and indexation]" name="DEFAULT_METASOURCES" type="string" label="MIXIN_MESSAGE[Default Metasources]" description="MIXIN_MESSAGE[Comma separated list of metastore and meta plugins, that will be automatically applied to all repositories created with this driver]" mandatory="false" default="metastore.serial,meta.watch,meta.syncable,meta.filehasher,index.lucene"/>
	</server_settings>
	<class_definition filename="plugins/access.fs/FsAccessDriver.php" classname="Pydio\Access\Driver\StreamProvider\FS\FsAccessDriver"/>
	<registry_contributions>
		<external_file filename="plugins/access.fs/fsActions.xml" include="actions/*" exclude=""/>
		<external_file filename="plugins/access.fs/fsTemplatePart.xml" include="client_configs/*" exclude=""/>
		<client_configs>
			<component_config component="FilesList">
				<columns switchGridMode="filelist">
					<column messageId="1" attributeName="ajxp_label" sortType="StringDirFile" defaultWidth="48%"/>
					<column messageId="2" attributeName="filesize" sortType="CellSorterValue" modifier="FilesList.prototype.partSizeCellRenderer" defaultWidth="9%"/>
					<column messageId="3" attributeName="mimestring" sortType="String" defaultWidth="5%" defaultVisibilty="hidden"/>
					<column messageId="4" attributeName="ajxp_modiftime" sortType="MyDate" defaultWidth="19%"/>
				</columns>
			</component_config>
			<component_config component="FoldersTree">
				<property name="display" value="dz"/>
			</component_config>
		</client_configs>
		<external_file filename="plugins/access.fs/fsActions.xml" include="client_configs/*" exclude=""/>
        <hooks>
            <serverCallback hookName="node.info" methodName="loadNodeInfo"/>
            <serverCallback hookName="node.info.nocache" methodName="localizeNodeInfo"/>
        </hooks>
	</registry_contributions>
    <class_stream_wrapper filename="plugins/access.fs/FsAccessWrapper.php" classname="Pydio\Access\Driver\StreamProvider\FS\FsAccessWrapper" protocol="ajxp.fs"/>
</ajxpdriver>
