Viewing file: imager.php (777 B) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("include/dbcommon.php");
$shortTable = postvalue("table");
$table = GetTableByShort( $shortTable );
if( !$table )
exit(0);
$field = postvalue("field");
$pageName = postvalue('page');
if( !Security::userHasFieldPermissions( $table, $field, PAGE_EDIT, $pageName, false ) )
return;
$pSet = new ProjectSettings( $table, $pageType, $pageName );
$params = array();
$params["table"] = $table;
$params["field"] = $field;
$params["src"] = postvalue("src") == 1;
$params["alt"] = postvalue("alt");
$params["pageType"] = $pageType;
$params["page"] = $pageName;
$keys = array();
foreach( $pSet->getTableKeys() as $ind => $k ) {
$keys[ $k ] = postvalue("key".($ind + 1));
}
$params["keys"] = $keys;
GetImageFromDB( $params );
?>
|