-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAF2005.php
More file actions
24 lines (17 loc) · 719 Bytes
/
Copy pathAF2005.php
File metadata and controls
24 lines (17 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
require('configure/application_top.php');
$current_page_name = 'af2005.php';
if (!tep_session_is_registered('customer_id')) {
$navigation->set_snapshot(array('mode' => 'NONSSL', 'page' => $current_page_name));
tep_redirect(tep_href_link(FILENAME_LOGIN, '', 'SSL'));
}
include(DIR_WS_INCLUDES . 'translation.php');
$breadcrumb->add(NAVBAR_TITLE, tep_href_link($current_page_name, '', 'NONSSL'));
$page_body_to_include = $current_page_name;
if (!tep_session_is_registered('customer_id')) {
include(getBestMatchToInclude(DIR_WS_COMMON . 'canvas/canvas.php'));
}else{
include(getBestMatchToInclude(DIR_WS_COMMON . 'canvas/canvas_private.php'));
}
require('configure/application_bottom.php');
?>