forked from WBCE/News-with-Images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_post.php
55 lines (48 loc) · 1.84 KB
/
add_post.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
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
*
* @category modules
* @package news_img
* @author WBCE Community
* @copyright 2004-2009, Ryan Djurovich
* @copyright 2009-2010, Website Baker Org. e.V.
* @copyright 2019-, WBCE Community
* @link https://www.wbce.org/
* @license http://www.gnu.org/licenses/gpl.html
* @platform WBCE
*
*/
require_once __DIR__.'/functions.inc.php';
// Include WB admin wrapper script
require(WB_PATH.'/modules/admin.php');
$section_key = $admin->checkIDKEY('section_key', 0, 'GET');
if (!$section_key || $section_key != $section_id) {
$admin->print_error(
$MESSAGE['GENERIC_SECURITY_ACCESS']
.' (IDKEY) '.__FILE__.':'.__LINE__,
ADMIN_URL.'/pages/index.php'
);
$admin->print_footer();
exit();
}
// Get new order
$order = new order(TABLE_PREFIX.'mod_news_img_posts', 'position', 'post_id', 'section_id');
$position = $order->get_new($section_id);
// Insert new row into database
$sql = "INSERT INTO `%smod_news_img_posts` " .
"(`section_id`,`position`,`link`,`content_short`,`content_long`,`content_block2`,`active`) ".
"VALUES ('$section_id','$position','','','','','1')";
$database->query(sprintf($sql, TABLE_PREFIX));
if ($database->is_error()) {
$admin->print_error($database->get_error(), ADMIN_URL.'/pages/modify.php?page_id='.$page_id);
} else {
// Get the id
$post_id = $database->get_one("SELECT LAST_INSERT_ID()");
$post_id_key = $admin->getIDKEY($post_id);
if (defined('WB_VERSION') && (version_compare(WB_VERSION, '2.8.3', '>'))) {
$post_id_key = $post_id;
}
$admin->print_success($TEXT['SUCCESS'], WB_URL.'/modules/news_img/modify_post.php?page_id='.$page_id.'§ion_id='.$section_id.'&post_id='. $post_id_key);
}
// Print admin footer
$admin->print_footer();