mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
add number of objects export at end of file, add export date
This commit is contained in:
parent
b47fec8c74
commit
c85e00510a
|
@ -91,8 +91,18 @@ if(isset($options['skip-root'])) {
|
|||
$skiproot = true;
|
||||
}
|
||||
|
||||
$statistic = array(
|
||||
'documents'=>0,
|
||||
'folders'=>0,
|
||||
'users'=>0,
|
||||
'groups'=>0,
|
||||
'attributedefinitions'=>0,
|
||||
'keywordcategories'=>0,
|
||||
'documentcategories'=>0,
|
||||
);
|
||||
|
||||
function tree($folder, $parent=null, $indent='', $skipcurrent=false) { /* {{{ */
|
||||
global $index, $dms, $maxsize, $contentdir;
|
||||
global $statistic, $index, $dms, $maxsize, $contentdir;
|
||||
|
||||
if(!$skipcurrent) {
|
||||
echo $indent."<folder id=\"".$folder->getId()."\"";
|
||||
|
@ -134,6 +144,7 @@ function tree($folder, $parent=null, $indent='', $skipcurrent=false) { /* {{{ */
|
|||
echo $indent." </acls>\n";
|
||||
}
|
||||
echo $indent."</folder>\n";
|
||||
$statistic['folders']++;
|
||||
$parentfolder = $folder;
|
||||
} else {
|
||||
$parentfolder = null;
|
||||
|
@ -375,6 +386,7 @@ function tree($folder, $parent=null, $indent='', $skipcurrent=false) { /* {{{ */
|
|||
}
|
||||
|
||||
echo $indent."</document>\n";
|
||||
$statistic['documents']++;
|
||||
}
|
||||
}
|
||||
} /* }}} */
|
||||
|
@ -391,7 +403,7 @@ if(!$settings->_doNotCheckDBVersion && !$dms->checkVersion()) {
|
|||
$dms->setRootFolderID($settings->_rootFolderID);
|
||||
|
||||
echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
|
||||
echo "<dms dbversion=\"".implode('.', array_slice($dms->getDBVersion(), 1, 3))."\">\n";
|
||||
echo "<dms dbversion=\"".implode('.', array_slice($dms->getDBVersion(), 1, 3))."\" date=\"".date('Y-m-d H:i:s')."\">\n";
|
||||
$users = $dms->getAllUsers();
|
||||
if($users) {
|
||||
echo "<users>\n";
|
||||
|
@ -435,6 +447,7 @@ if($users) {
|
|||
echo " </mandatory_approvers>\n";
|
||||
}
|
||||
echo " </user>\n";
|
||||
$statistic['users']++;
|
||||
}
|
||||
echo "</users>\n";
|
||||
}
|
||||
|
@ -455,6 +468,7 @@ if($groups) {
|
|||
echo " </users>\n";
|
||||
}
|
||||
echo " </group>\n";
|
||||
$statistic['groups']++;
|
||||
}
|
||||
echo "</groups>\n";
|
||||
}
|
||||
|
@ -477,6 +491,7 @@ if($categories) {
|
|||
echo " </keywords>\n";
|
||||
}
|
||||
echo " </keywordcategory>\n";
|
||||
$statistic['keywordcategories']++;
|
||||
}
|
||||
echo "</keywordcategories>\n";
|
||||
}
|
||||
|
@ -488,6 +503,7 @@ if($categories) {
|
|||
echo " <documentcategory id=\"".$category->getId()."\">\n";
|
||||
echo " <attr name=\"name\">".wrapWithCData($category->getName())."</attr>\n";
|
||||
echo " </documentcategory>\n";
|
||||
$statistic['documentcategories']++;
|
||||
}
|
||||
echo "</documentcategories>\n";
|
||||
}
|
||||
|
@ -520,6 +536,7 @@ if($attrdefs) {
|
|||
echo " <attr name=\"maxvalues\">".$attrdef->getMaxValues()."</attr>\n";
|
||||
echo " <attr name=\"regex\">".wrapWithCData($attrdef->getRegex())."</attr>\n";
|
||||
echo " </attributedefinition>\n";
|
||||
$statistic['attributedefinitions']++;
|
||||
}
|
||||
echo "</attrіbutedefinitions>\n";
|
||||
}
|
||||
|
@ -530,4 +547,8 @@ if($folder) {
|
|||
}
|
||||
|
||||
echo "</dms>\n";
|
||||
echo "<!--\n";
|
||||
foreach($statistic as $type=>$count)
|
||||
echo " ".$type.": ".$count."\n";
|
||||
echo "-->\n"
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue
Block a user