You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
773 B
23 lines
773 B
<?php
|
|
/**
|
|
* Test file for metadata
|
|
* @package chamilo.metadata
|
|
*/
|
|
/**
|
|
* Init
|
|
*/
|
|
require_once api_get_path(SYS_CODE_PATH).'metadata/md_funcs.php'; $mdStore = new mdstore(TRUE);
|
|
require_once api_get_path(LIBRARY_PATH) . 'xmd.lib.php';
|
|
require_once api_get_path(LIBRARY_PATH) . 'xht.lib.php';
|
|
require_once api_get_path(SYS_CODE_PATH).'metadata/md_document.php';
|
|
|
|
$mdObj = new mdobject($_course, $docId); // e.g. '12'
|
|
|
|
// Fetch example:
|
|
if (is_array($dcelems = $mdStore->mds_get_dc_elements($mdObj))) {
|
|
echo '<div>', htmlspecialchars($dcelems['Identifier']), ': ',
|
|
htmlspecialchars($dcelems['Description']), '</div>';
|
|
}
|
|
// Store example:
|
|
$langMdCopyright = 'Provided the source is acknowledged';
|
|
$mdStore->mds_put_dc_elements($mdObj, array('Description'=>time()));
|
|
|