12-17-2009 09:45 AM
function getDatosCreacion ($nombre) {
require_once "Alfresco/Service/Conexion.php";
$conexion = Conexion::getIstance();
$conexion->connectRepository("http://localhost:8080/alfresco/api", "user", "pass");
$nodes = $conexion->session->query($conexion->spacesStore, "PATH:\"app:company_home/cm:***/cm:***/cm:***\"");
$guestHome = $nodes[0];
foreach ($guestHome->children as $c) {
if ($c->child->cm_name == $nombre) {
return $c->child->cm_date;
}
}
}
12-17-2009 09:50 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.