forked from modxcms-jp/evolution-jp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
click.php
executable file
·42 lines (32 loc) · 1.45 KB
/
click.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
require_once "manager/includes/protect.inc.php";
include_once "manager/includes/config.inc.php";
include_once "manager/includes/document.parser.class.inc.php";
$modx = new DocumentParser();
$mod_table = $modx->getFullTableName("site_easyadvt"); //таблица модуля
// куда переходить, если в таблице не найден линк
$error_link = 'http://'.$_SERVER['HTTP_HOST'].'/page_not_found';
/*
кому
1. лень один раз прописать линк руками
2. не жалко сервер (лишние запросы)
3. хочет чтобы линк на страницу 404 брался из конфига MODx
могут расскомментировать :)
$sql = "SELECT setting_value FROM ".$modx->getFullTableName('system_settings')." WHERE setting_name='error_page'";
$error_page = $modx->db->getValue($modx->db->query($sql));
$error_link = $modx->makeUrl((int)$error_page, '', '', 'full');
*/
$id = (int)$_GET['id'];
if ($id <= 0 )
$modx->sendRedirect($error_link, 0, '', 'HTTP/1.1 404 Not found');
else {
$sql = "SELECT link FROM ".$mod_table." WHERE id = ".$id;
$link = $modx->db->getValue($modx->db->query($sql));
if (empty($link))
$modx->sendRedirect($error_link, 0, '', 'HTTP/1.1 404 Not found');
else {
$sql = "UPDATE ".$mod_table." SET jump_count=jump_count+1 WHERE id=".$id;
$modx->db->query($sql);
$modx->sendRedirect($link);
}
}