<?php
///////////////////////////////////////////////////////////////////////////////////////////
///Script PHP/MYSQL of management of classifieds ads developed by Script PAG
///Script PAG all rights reserved. Use under license. http://www.script-pag.com
///////////////////////////////////////////////////////////////////////////////////////////

require_once(__DIR__.'/cache_upload.php');

pool::execute('beforedispatch');
pool::execute('addUploadContext');

$response = null;
if(isset($cache_upload) && isset($_POST['context']) && isset($cache_upload[$_POST['context']])) {
	$response = $cache_upload[$_POST['context']];
	if(isset($response['watermark']) && $response['watermark'] == true && !file_exists(__DIR__.'/../../../template/images/upload_photo.png'))
		$response['watermark'] = false;
}
echo json_encode($response, JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP);

pool::execute('postdispatch');