Skip to content
Snippets Groups Projects
Commit 01a769c7 authored by Giovannoni Laurent's avatar Giovannoni Laurent
Browse files

new collection in progress

parent 3afb4a27
No related branches found
No related tags found
No related merge requests found
......@@ -425,6 +425,22 @@ class security extends dbquery
return '';
}
/**
* Returns the collection extension table from a collId
*
* @param $collId string collection ID
* @return string version table or empty string if not found
*/
public function retrieve_extension_table_from_coll_id($collId)
{
for ($i=0;$i<count($_SESSION['collections']);$i++) {
if ($_SESSION['collections'][$i]['id'] == $collId) {
return $_SESSION['collections'][$i]['extensions'][0];
}
}
return '';
}
/**
* Returns the adr table from a table
*
......
......@@ -185,4 +185,12 @@ An action page is described in a ACTIONPAGE tag :
<KEYWORD>indexing</KEYWORD>
<FLAG_CREATE>true</FLAG_CREATE>
</ACTIONPAGE>
<ACTIONPAGE>
<ID>validate_business</ID>
<LABEL>_VALIDATE_QUALIF_BUSINESS</LABEL>
<NAME>validate_business</NAME>
<ORIGIN>apps</ORIGIN>
<MODULE></MODULE>
<FLAG_CREATE>false</FLAG_CREATE>
</ACTIONPAGE>
</ROOT>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment