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

FEAT more tests on res controllers

parent dcfca8e1
No related branches found
No related tags found
No related merge requests found
...@@ -184,50 +184,6 @@ ...@@ -184,50 +184,6 @@
} }
} }
/**
* Gets the resource identifier
*
* @return integer Resource identifier (res_id)
*/
public function get_id()
{
return $this->res_id;
}
/**
* Gets the resource filename
*
* @return integer Resource name (filemane)
*/
public function get_filename($id,$coll_id)
{
require_once("core/class/class_security.php");
$sec = new security();
$resource_table = $sec->retrieve_table_from_coll($coll_id);
if ($resource_table == '')
echo "error with coll_id";
$db = new Database();
$stmt = $db->query("select filename from ".$resource_table." where res_id=?", array($id));
$result = $stmt->fetchObject();
return $result->filename;
}
/**
* Gets the resource path
*
* @return integer Resource path (path)
*/
public function get_path($id,$coll_id)
{
require_once("core/class/class_security.php");
$sec = new security();
$resource_table = $sec->retrieve_table_from_coll($coll_id);
if ($resource_table == '')
echo "error with coll_id";
$db = new Database();
$stmt = $db->query("select path from ".$resource_table." where res_id=?", array($id));
$result = $stmt->fetchObject();
return str_replace('#', DIRECTORY_SEPARATOR, $result->path);
}
/** /**
* Gets the error message of the resource object * Gets the error message of the resource object
......
...@@ -124,6 +124,7 @@ $app->put('/{collId}/{resId}/unsign', \Visa\Controllers\VisaController::class . ...@@ -124,6 +124,7 @@ $app->put('/{collId}/{resId}/unsign', \Visa\Controllers\VisaController::class .
//resource //resource
$app->post('/res', \Core\Controllers\ResController::class . ':create'); $app->post('/res', \Core\Controllers\ResController::class . ':create');
//extresource
$app->post('/resExt', \Core\Controllers\ResExtController::class . ':create');
$app->run(); $app->run();
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