SURAT KETERANGAN Hasil Uji Program Tugas Akhir
Yang bertanda tangan di bawah ini, menerangkan bahwa Mahasiswa Tugas Akhir Program Diploma 3 Teknik Informatika :
Nama : NURFIKA RANI SIREGAR NIM : 102406162
Prog.Studi : D-3 Teknik Informatika
Judul TA : PERACANGAN APLIKASI INTERNET E- COMMERCE ORYZA FASHOP
Telah melaksanakan test program Tugas Akhir Mahasiswa tersebut di atas pada tanggal………
Dengan Hasil : Sukses / Gagal
Demikian diterangkan untuk digunakan melengkapi syarat pendaftaran Ujian Meja Hijau Tugas Akhir Mahasiswa bersangkutan di Departemen Matematika FMIPA USU Medan
Medan, Juni 2013 Dosen Pembingbing
KEMENTERIAN PENDIDIKAN DAN KEBUDAYAAN
UNIVERSITAS SUMATERA UTARA
FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM
Jln. Bioteknologi No.1 Kampus USU Padang Bulan Medan-20155
Telp. (061) 8211050, 8214290, Fax. (061) 8214290
KARTU BIMBINGAN TUGAS AKHIR MAHASISWA
Nama Mahasiswa : NURFIKA RANI SIREGAR Nomor Induk Mahasiswa : 102406162
Judul Tugas Akhir :PERANCANGAN APLIKASI INTERNET E-COMMERCE
ORYZA FASHOP
Dosen Pembimbing : Drs.Henry Rani Sitepu, M.S. Tanggal Mulai Bimbingan :
Tanggal Selesai Bimbingan :
No Tanggal Asisten Bimbingan
Pembahasan pada Asisten Mengenai, pada Bab:
Paraf Dosen Pembimbing
Keterangan
1 2 3 4 5 6 7 8
* Kartu ini harap dikembalikan ke Departemen Matematika bila bimbingan telah selesai.
Diketahui Disetujui
Ketua Departemen Matematika Pembimbing Utama/ Penanggung Jawab
A.Config
1. Koneksi.php
<?php // HTTP
define('HTTP_SERVER', 'http://localhost/online/admin/'); define('HTTP_CATALOG', 'http://localhost/online/');
define('HTTP_IMAGE', 'http://localhost/online/image/');
// HTTPS
define('HTTPS_SERVER', 'http://localhost/online/admin/'); define('HTTPS_IMAGE', 'http://localhost/online/image/');
// DIR
define('DIR_APPLICATION',
'C:\xampp\htdocs\online/admin/');
define('DIR_SYSTEM', 'C:\xampp\htdocs\online/system/'); define('DIR_DATABASE',
'C:\xampp\htdocs\online/system/database/'); define('DIR_LANGUAGE',
'C:\xampp\htdocs\online/admin/language/'); define('DIR_TEMPLATE',
'C:\xampp\htdocs\online/admin/view/template/'); define('DIR_CONFIG',
'C:\xampp\htdocs\online/system/config/');
define('DIR_IMAGE', 'C:\xampp\htdocs\online/image/'); define('DIR_CACHE',
'C:\xampp\htdocs\online/system/cache/'); define('DIR_DOWNLOAD',
'C:\xampp\htdocs\online/download/'); define('DIR_LOGS',
'C:\xampp\htdocs\online/system/logs/');
define('DIR_CATALOG', 'C:\xampp\htdocs\online/catalog/');
// DB
define('DB_DRIVER', 'mysql');
define('DB_HOSTNAME', 'localhost'); define('DB_USERNAME', 'root');
define('DB_PASSWORD', ''); define('DB_DATABASE', 'toko'); define('DB_PREFIX', '');
B.MENU UTAMA
1. Index.php
<?php
// Version
define('VERSION', '1.5.0');
// Configuration
require_once('config.php');
// Install
if (!defined('DIR_APPLICATION')) {
header('Location: ../install/index.php'); exit;
}
// Startup
require_once(DIR_SYSTEM . 'startup.php');
// Application Classes
require_once(DIR_SYSTEM . 'library/currency.php'); require_once(DIR_SYSTEM . 'library/user.php'); require_once(DIR_SYSTEM . 'library/weight.php'); require_once(DIR_SYSTEM . 'library/length.php');
// Registry
$registry = new Registry();
// Loader
$loader = new Loader($registry); $registry->set('load', $loader);
// Config
$config = new Config();
$registry->set('config', $config);
// Database
$db = new DB(DB_DRIVER, DB_HOSTNAME, DB_USERNAME, DB_PASSWORD, DB_DATABASE);
$registry->set('db', $db);
$query = $db->query("SELECT * FROM " . DB_PREFIX . "setting WHERE store_id = '0'");
foreach ($query->rows as $setting) {
$config->set($setting['key'], $setting['value']); }
// Url
$url = new Url(HTTP_SERVER, HTTPS_SERVER); $registry->set('url', $url);
// Log
$log = new Log($config->get('config_error_filename')); $registry->set('log', $log);
function error_handler($errno, $errstr, $errfile, $errline) {
global $log, $config;
switch ($errno) { case E_NOTICE:
case E_USER_NOTICE: $error = 'Notice'; break;
case E_WARNING:
case E_USER_WARNING: $error = 'Warning'; break;
case E_ERROR:
case E_USER_ERROR:
$error = 'Fatal Error'; break;
default:
$error = 'Unknown'; break;
}
if ($config->get('config_error_display')) {
echo '<b>' . $error . '</b>: ' . $errstr . ' in <b>' . $errfile . '</b> on line <b>' . $errline . '</b>';
}
if ($config->get('config_error_log')) {
}
return true; }
// Error Handler
set_error_handler('error_handler');
// Request
$request = new Request();
$registry->set('request', $request);
// Response
$response = new Response();
$response->addHeader('Content-Type: text/html; charset=utf-8');
$registry->set('response', $response);
// Cache
$cache = new Cache();
$registry->set('cache', $cache);
// Session
$session = new Session();
$registry->set('session', $session);
// Language
$languages = array();
$query = $db->query("SELECT * FROM " . DB_PREFIX . "language");
foreach ($query->rows as $result) {
$languages[$result['code']] = $result; }
$config->set('config_language_id', $languages[$config->get('config_admin_language')]['language_id']);
// Language
$language = new Language($languages[$config->get('config_admin_language')]['directory']);
$registry->set('language', $language);
// Document
$document = new Document();
$registry->set('document', $document);
// Currency
$registry->set('currency', new Currency($registry));
// Weight
$registry->set('weight', new Weight($registry));
// Length
$registry->set('length', new Length($registry));
// User
$registry->set('user', new User($registry));
// Front Controller
$controller = new Front($registry);
// Login
$controller->addPreAction(new Action('common/home/login'));
// Permission
$controller->addPreAction(new
Action('common/home/permission'));
// Router
if (isset($request->get['route'])) {
$action = new Action($request->get['route']); } else {
$action = new Action('common/home'); }
// Dispatch
$controller->dispatch($action, new Action('error/not_found'));
// Output
2. Kategori.php
<?php
class ControllerCatalogCategory extends Controller { private $error = array();
public function index() {
$this->load->language('catalog/category');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/category');
$this->getList(); }
public function insert() {
$this->load->language('catalog/category');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/category');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
$this->model_catalog_category->addCategory($this->request->post);
>session->data['success'] = $this->language->get('text_success');
$this->redirect($this->url->link('catalog/category', 'token=' . $this->session->data['token'], 'SSL'));
}
$this->getForm(); }
$this->load->language('catalog/category');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/category');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
>model_catalog_category->editCategory(>request->get['category_id'], $this->request->post);
>session->data['success'] = $this->language->get('text_success');
$this->redirect($this->url->link('catalog/category', 'token=' . $this->session->data['token'], 'SSL'));
}
$this->getForm(); }
public function delete() {
$this->load->language('catalog/category');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/category');
if (isset($this->request->post['selected']) && $this->validateDelete()) {
foreach ($this->request->post['selected'] as $category_id) {
$this->model_catalog_category->deleteCategory($category_id);
}
>session->data['success'] = $this->language->get('text_success');
$this->redirect($this->url->link('catalog/category', 'token=' . $this->session->data['token'], 'SSL'));
}
$this->getList(); }
private function getList() {
$this->data['breadcrumbs'] = array();
$this->data['breadcrumbs'][] = array( 'text' => $this->language->get('text_home'),
'href' =>
$this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
'separator' => false );
$this->data['breadcrumbs'][] = array( 'text' => $this->language->get('heading_title'),
'href' =>
$this->url->link('catalog/category', 'token=' . $this->session->data['token'], 'SSL'),
'separator' => ' :: ' );
$this->data['insert'] =
>url->link('catalog/category/insert', 'token=' . $this->session->data['token'], 'SSL');
$this->data['delete'] =
>url->link('catalog/category/delete', 'token=' . $this->session->data['token'], 'SSL');
$this->data['categories'] = array();
$results = $this->model_catalog_category->getCategories(0);
foreach ($results as $result) { $action = array();
'text' => $this->language->get('text_edit'),
'href' =>
>url->link('catalog/category/update', 'token=' . $this->session->data['token'] . '&category_id=' .
$result['category_id']) );
$this->data['categories'][] = array( 'category_id' =>
$result['category_id'],
'name' => $result['name'], 'sort_order' =>
$result['sort_order'],
'selected' => isset($this->request->post['selected']) &&
in_array($result['category_id'], $this->request->post['selected']),
'action' => $action );
}
$this->data['heading_title'] = $this->language->get('heading_title');
>data['text_no_results'] = $this->language->get('text_no_results');
$this->data['column_name'] = $this->language->get('column_name');
>data['column_sort_order'] = $this->language->get('column_sort_order');
$this->data['column_action'] = $this->language->get('column_action');
$this->data['button_insert'] = $this->language->get('button_insert');
$this->data['button_delete'] = $this->language->get('button_delete');
if (isset($this->error['warning'])) { >data['error_warning'] = $this->error['warning'];
$this->data['error_warning'] = ''; }
if (isset($this->session->data['success'])) { $this->data['success'] = $this->session->data['success'];
unset($this->session->data['success']); } else {
$this->data['success'] = ''; }
$this->template = 'catalog/category_list.tpl'; $this->children = array(
'common/header', 'common/footer', );
$this->response->setOutput($this->render()); }
private function getForm() {
$this->data['heading_title'] = $this->language->get('heading_title');
$this->data['text_none'] = $this->language->get('text_none');
$this->data['text_default'] = $this->language->get('text_default');
>data['text_image_manager'] = $this->language->get('text_image_manager');
$this->data['text_enabled'] = $this->language->get('text_enabled');
$this->data['text_disabled'] = $this->language->get('text_disabled');
$this->data['text_percent'] = $this->language->get('text_percent');
$this->data['text_amount'] = $this->language->get('text_amount');
$this->data['entry_name'] = $this->language->get('entry_name');
>data['entry_meta_description'] = $this->language->get('entry_meta_description');
>data['entry_description'] = $this->language->get('entry_description');
$this->data['entry_store'] = $this->language->get('entry_store');
$this->data['entry_keyword'] = $this->language->get('entry_keyword');
$this->data['entry_parent'] = $this->language->get('entry_parent');
$this->data['entry_image'] = $this->language->get('entry_image');
$this->data['entry_top'] = $this->language->get('entry_top');
$this->data['entry_column'] = $this->language->get('entry_column');
>data['entry_sort_order'] = $this->language->get('entry_sort_order');
$this->data['entry_status'] = $this->language->get('entry_status');
$this->data['entry_layout'] = $this->language->get('entry_layout');
$this->data['button_save'] = $this->language->get('button_save');
$this->data['button_cancel'] = $this->language->get('button_cancel');
$this->data['tab_general'] = $this->language->get('tab_general');
$this->data['tab_data'] = $this->language->get('tab_data');
$this->data['tab_design'] = $this->language->get('tab_design');
if (isset($this->error['warning'])) { >data['error_warning'] = $this->error['warning'];
} else {
$this->data['error_warning'] = ''; }
$this->error['name']; } else {
$this->data['error_name'] = array(); }
$this->data['breadcrumbs'] = array();
$this->data['breadcrumbs'][] = array( 'text' => $this->language->get('text_home'),
'href' =>
$this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
'separator' => false );
$this->data['breadcrumbs'][] = array( 'text' => $this->language->get('heading_title'),
'href' =>
$this->url->link('catalog/category', 'token=' . $this->session->data['token'], 'SSL'),
'separator' => ' :: ' );
if (!isset($this->request->get['category_id'])) {
$this->data['action'] = >url->link('catalog/category/insert', 'token=' . $this->session->data['token'], 'SSL');
} else {
$this->data['action'] = >url->link('catalog/category/update', 'token=' . >session->data['token'] . '&category_id=' . $this->request->get['category_id']);
}
$this->data['cancel'] =
$this->url->link('catalog/category', 'token=' . $this->session->data['token'], 'SSL');
if (isset($this->request->get['category_id']) && ($this->request->server['REQUEST_METHOD'] != 'POST')) {
$category_info =
$this- >model_catalog_category->getCategory($this->request->get['category_id']);
}
$this->load->model('localisation/language');
>data['languages'] = $this->model_localisation_language->getLanguages();
if (isset($this->request->post['category_description'])) {
$this->data['category_description'] = $this->request->post['category_description'];
} elseif (isset($category_info)) {
$this->data['category_description'] =
$this->model_catalog_category- >getCategoryDescriptions($this->request->get['category_id']);
} else {
$this->data['category_description'] = array();
}
$categories = $this->model_catalog_category->getCategories(0);
// Remove own id from list if (isset($category_info)) {
foreach ($categories as $key => $category) {
if ($category['category_id'] == $category_info['category_id']) {
unset($categories[$key]); }
} }
$this->data['categories'] = $categories;
$this->data['parent_id'] = $this->request->post['parent_id'];
} elseif (isset($category_info)) { $this->data['parent_id'] = $category_info['parent_id'];
} else {
$this->data['parent_id'] = 0; }
$this->load->model('setting/store');
>data['stores'] = $this->model_setting_store->getStores();
if (isset($this->request->post['category_store'])) {
>data['category_store'] = $this->request->post['category_store'];
} elseif (isset($category_info)) {
>data['category_store'] = $this- >model_catalog_category->getCategoryStores($this->request->get['category_id']);
} else {
$this->data['category_store'] = array(0); }
if (isset($this->request->post['keyword'])) { $this->data['keyword'] = $this->request->post['keyword'];
} elseif (isset($category_info)) { $this->data['keyword'] =
$category_info['keyword']; } else {
$this->data['keyword'] = ''; }
if (isset($this->request->post['image'])) { $this->data['image'] = $this->request->post['image'];
} elseif (isset($category_info)) { $this->data['image'] =
$category_info['image']; } else {
}
$this->load->model('tool/image');
if (isset($category_info) &&
$category_info['image'] && file_exists(DIR_IMAGE . $category_info['image'])) {
>data['preview'] =
$this->model_tool_image->resize($category_info['image'], 100, 100);
} else {
>data['preview'] =
$this->model_tool_image->resize('no_image.jpg', 100, 100); }
if (isset($this->request->post['top'])) { $this->data['top'] = $this->request->post['top'];
} elseif (isset($category_info)) { $this->data['top'] =
$category_info['top']; } else {
$this->data['top'] = 0; }
if (isset($this->request->post['column'])) { $this->data['column'] = $this->request->post['column'];
} elseif (isset($category_info)) { $this->data['column'] =
$category_info['column']; } else {
$this->data['column'] = 1; }
if (isset($this->request->post['sort_order'])) {
>data['sort_order'] = $this->request->post['sort_order'];
} elseif (isset($category_info)) { $this->data['sort_order'] = $category_info['sort_order'];
} else {
}
if (isset($this->request->post['status'])) { $this->data['status'] = $this->request->post['status'];
} elseif (isset($category_info)) { $this->data['status'] =
$category_info['status']; } else {
$this->data['status'] = 1; }
if (isset($this->request->post['category_layout'])) {
>data['category_layout'] = $this->request->post['category_layout'];
} elseif (isset($category_info)) {
>data['category_layout'] = $this- >model_catalog_category->getCategoryLayouts($this->request->get['category_id']);
} else {
$this->data['category_layout'] = array(); }
$this->load->model('design/layout');
>data['layouts'] = $this->model_design_layout->getLayouts();
$this->template = 'catalog/category_form.tpl'; $this->children = array(
'common/header', 'common/footer', );
$this->response->setOutput($this->render()); }
private function validateForm() {
if (!$this->user->hasPermission('modify', 'catalog/category')) {
$this->error['warning'] = $this->language->get('error_permission');
foreach
($this->request->post['category_description'] as $language_id => $value) {
if ((strlen(utf8_decode($value['name'])) < 2) || (strlen(utf8_decode($value['name'])) > 255)) {
$this->error['name'][$language_id] = $this->language->get('error_name');
} }
if ($this->error && !isset($this->error['warning'])) {
$this->error['warning'] = $this->language->get('error_warning');
}
if (!$this->error) { return true; } else {
return false; }
}
private function validateDelete() {
if (!$this->user->hasPermission('modify', 'catalog/category')) {
$this->error['warning'] = $this->language->get('error_permission');
}
if (!$this->error) { return true; } else {
return false; }
} }
3. Produk.php
<?php
class ControllerCatalogProduct extends Controller { private $error = array();
public function index() {
$this->load->language('catalog/product');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/product');
$this->getList(); }
public function insert() {
$this->load->language('catalog/product');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/product');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
$this->model_catalog_product->addProduct($this->request->post);
>session->data['success'] = $this->language->get('text_success');
$url = '';
if (isset($this->request->get['filter_name'])) {
$url .= '&filter_name=' . $this->request->get['filter_name'];
}
$url .= '&filter_model=' . $this->request->get['filter_model'];
}
if (isset($this->request->get['filter_price'])) {
$url .= '&filter_price=' . $this->request->get['filter_price'];
}
if (isset($this->request->get['filter_quantity'])) {
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
}
if (isset($this->request->get['filter_status'])) {
$url .= '&filter_status=' . $this->request->get['filter_status'];
}
if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) { $url .= '&order=' . $this->request->get['order'];
}
if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page'];
}
$this->redirect($this->url->link('catalog/product', 'token=' . $this->session->data['token'] . $url, 'SSL'));
}
public function update() {
$this->load->language('catalog/product');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/product');
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
>model_catalog_product->editProduct(>request->get['product_id'], $this->request->post);
>session->data['success'] = $this->language->get('text_success');
$url = '';
if (isset($this->request->get['filter_name'])) {
$url .= '&filter_name=' . $this->request->get['filter_name'];
}
if (isset($this->request->get['filter_model'])) {
$url .= '&filter_model=' . $this->request->get['filter_model'];
}
if (isset($this->request->get['filter_price'])) {
$url .= '&filter_price=' . $this->request->get['filter_price'];
}
if (isset($this->request->get['filter_quantity'])) {
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
if (isset($this->request->get['filter_status'])) {
$url .= '&filter_status=' . $this->request->get['filter_status'];
}
if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) { $url .= '&order=' . $this->request->get['order'];
}
if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page'];
}
$this->redirect($this->url->link('catalog/product', 'token=' . $this->session->data['token'] . $url, 'SSL'));
}
$this->getForm(); }
public function delete() {
$this->load->language('catalog/product');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/product');
if (isset($this->request->post['selected']) && $this->validateDelete()) {
foreach ($this->request->post['selected'] as $product_id) {
$this->model_catalog_product->deleteProduct($product_id);
>session->data['success'] = $this->language->get('text_success');
$url = '';
if (isset($this->request->get['filter_name'])) {
$url .= '&filter_name=' . $this->request->get['filter_name'];
}
if (isset($this->request->get['filter_model'])) {
$url .= '&filter_model=' . $this->request->get['filter_model'];
}
if (isset($this->request->get['filter_price'])) {
$url .= '&filter_price=' . $this->request->get['filter_price'];
}
if (isset($this->request->get['filter_quantity'])) {
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
}
if (isset($this->request->get['filter_status'])) {
$url .= '&filter_status=' . $this->request->get['filter_status'];
}
if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort'];
}
}
if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page'];
}
$this->redirect($this->url->link('catalog/product', 'token=' . $this->session->data['token'] . $url, 'SSL'));
}
$this->getList(); }
public function copy() {
$this->load->language('catalog/product');
$this->document->setTitle($this->language->get('heading_title'));
$this->load->model('catalog/product');
if (isset($this->request->post['selected']) && $this->validateCopy()) {
foreach ($this->request->post['selected'] as $product_id) {
$this->model_catalog_product->copyProduct($product_id);
}
>session->data['success'] = $this->language->get('text_success');
$url = '';
if (isset($this->request->get['filter_name'])) {
$url .= '&filter_name=' . $this->request->get['filter_name'];
}
$url .= '&filter_model=' . $this->request->get['filter_model'];
}
if (isset($this->request->get['filter_price'])) {
$url .= '&filter_price=' . $this->request->get['filter_price'];
}
if (isset($this->request->get['filter_quantity'])) {
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
}
if (isset($this->request->get['filter_status'])) {
$url .= '&filter_status=' . $this->request->get['filter_status'];
}
if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) { $url .= '&order=' . $this->request->get['order'];
}
if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page'];
}
$this->redirect($this->url->link('catalog/product', 'token=' . $this->session->data['token'] . $url, 'SSL'));
}
private function getList() {
if (isset($this->request->get['filter_name'])) {
$filter_name = $this->request->get['filter_name'];
} else {
$filter_name = null; }
if (isset($this->request->get['filter_model'])) {
$filter_model = $this->request->get['filter_model'];
} else {
$filter_model = null; }
if (isset($this->request->get['filter_price'])) {
$filter_price = $this->request->get['filter_price'];
} else {
$filter_price = null; }
if (isset($this->request->get['filter_quantity'])) {
$filter_quantity = $this->request->get['filter_quantity'];
} else {
$filter_quantity = null; }
if (isset($this->request->get['filter_status'])) {
$filter_status = $this->request->get['filter_status'];
} else {
$filter_status = null; }
} else {
$sort = 'pd.name'; }
if (isset($this->request->get['order'])) { $order = $this->request->get['order']; } else {
$order = 'ASC'; }
if (isset($this->request->get['page'])) { $page = $this->request->get['page']; } else {
$page = 1; }
$url = '';
if (isset($this->request->get['filter_name'])) {
$url .= '&filter_name=' . $this->request->get['filter_name'];
}
if (isset($this->request->get['filter_model'])) {
$url .= '&filter_model=' . $this->request->get['filter_model'];
}
if (isset($this->request->get['filter_price'])) {
$url .= '&filter_price=' . $this->request->get['filter_price'];
}
if (isset($this->request->get['filter_quantity'])) {
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
}
$url .= '&filter_status=' . $this->request->get['filter_status'];
}
if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) { $url .= '&order=' . $this->request->get['order'];
}
if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page'];
}
$this->data['breadcrumbs'] = array();
$this->data['breadcrumbs'][] = array( 'text' => $this->language->get('text_home'),
'href' =>
$this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
'separator' => false );
$this->data['breadcrumbs'][] = array( 'text' => $this->language->get('heading_title'),
'href' =>
$this->url->link('catalog/product', 'token=' . $this->session->data['token'] . $url, 'SSL'),
'separator' => ' :: ' );
$this->data['insert'] = >url->link('catalog/product/insert', 'token=' . $this->session->data['token'] . $url, 'SSL');
$this->data['copy'] =
$this->session->data['token'] . $url, 'SSL');
$this->data['delete'] = >url->link('catalog/product/delete', 'token=' . $this->session->data['token'] . $url, 'SSL');
$this->data['products'] = array();
$data = array(
'filter_name' => $filter_name, 'filter_model' => $filter_model, 'filter_price' => $filter_price, 'filter_quantity' => $filter_quantity, 'filter_status' => $filter_status, 'sort' => $sort,
'order' => $order,
'start' => ($page - 1) * $this->config->get('config_admin_limit'),
'limit' => $this->config->get('config_admin_limit')
);
$this->load->model('tool/image');
$product_total = $this->model_catalog_product->getTotalProducts($data);
$results = $this->model_catalog_product->getProducts($data);
foreach ($results as $result) { $action = array();
$action[] = array(
'text' => $this->language->get('text_edit'),
'href' =>
>url->link('catalog/product/update', 'token=' . $this->session->data['token'] . '&product_id=' .
$result['product_id'] . $url, 'SSL') );
if ($result['image'] &&
file_exists(DIR_IMAGE . $result['image'])) {
$this->model_tool_image->resize($result['image'], 40, 40); } else {
$image = $this->model_tool_image->resize('no_image.jpg', 40, 40);
}
$product_specials = $this-
>model_catalog_product->getProductSpecials($result['product_id']);
if ($product_specials) {
$special = reset($product_specials); if(($special['date_start'] != '0000-00-00' && $special['date_start'] > date('Y-m-d')) ||
($special['date_end'] != '0000-00-00' && $special['date_end'] < date('Y-m-d'))) { $special = FALSE; }
} else {
$special = FALSE; }
$this->data['products'][] = array( 'product_id' =>
$result['product_id'],
'name' => $result['name'], 'model' => $result['model'], 'price' => $result['price'], 'special' => $special['price'], 'image' => $image,
'quantity' => $result['quantity'], 'status' => ($result['status'] ? >get('text_enabled') : $this->language->get('text_disabled')),
'selected' => isset($this->request->post['selected']) && in_array($result['product_id'], $this->request->post['selected']),
'action' => $action );
}
$this->data['text_enabled'] = $this->language->get('text_enabled');
$this->data['text_disabled'] = $this->language->get('text_disabled');
>data['text_no_results'] = $this->language->get('text_no_results');
>data['text_image_manager'] = $this->language->get('text_image_manager');
$this->data['column_image'] = $this->language->get('column_image');
$this->data['column_name'] = $this->language->get('column_name');
$this->data['column_model'] = $this->language->get('column_model');
$this->data['column_price'] = $this->language->get('column_price');
>data['column_quantity'] = $this->language->get('column_quantity');
$this->data['column_status'] = $this->language->get('column_status');
$this->data['column_action'] = $this->language->get('column_action');
$this->data['button_copy'] = $this->language->get('button_copy');
$this->data['button_insert'] = $this->language->get('button_insert');
$this->data['button_delete'] = $this->language->get('button_delete');
$this->data['button_filter'] = $this->language->get('button_filter');
$this->data['token'] = $this->session->data['token'];
if (isset($this->error['warning'])) { >data['error_warning'] = $this->error['warning'];
} else {
$this->data['error_warning'] = ''; }
$this->data['success'] = $this->session->data['success'];
unset($this->session->data['success']); } else {
$this->data['success'] = ''; }
$url = '';
if (isset($this->request->get['filter_name'])) {
$url .= '&filter_name=' . $this->request->get['filter_name'];
}
if (isset($this->request->get['filter_model'])) {
$url .= '&filter_model=' . $this->request->get['filter_model'];
}
if (isset($this->request->get['filter_price'])) {
$url .= '&filter_price=' . $this->request->get['filter_price'];
}
if (isset($this->request->get['filter_quantity'])) {
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
}
if (isset($this->request->get['filter_status'])) {
$url .= '&filter_status=' . $this->request->get['filter_status'];
}
if ($order == 'ASC') {
$url .= '&order=DESC'; } else {
}
if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page'];
}
$this->data['sort_name'] = $this->url->link('catalog/product', 'token=' . $this->session->data['token'] . '&sort=pd.name' . $url, 'SSL');
$this->data['sort_model'] = $this->url->link('catalog/product', 'token=' . $this->session->data['token'] . '&sort=p.model' . $url, 'SSL');
$this->data['sort_price'] = $this->url->link('catalog/product', 'token=' . $this->session->data['token'] . '&sort=p.price' . $url, 'SSL');
$this->data['sort_quantity'] = $this->url->link('catalog/product', 'token=' . $this->session->data['token'] . '&sort=p.quantity' . $url, 'SSL');
$this->data['sort_status'] = $this->url->link('catalog/product', 'token=' . $this->session->data['token'] . '&sort=p.status' . $url, 'SSL');
$this->data['sort_order'] = $this->url->link('catalog/product', 'token=' . $this->session->data['token'] . '&sort=p.sort_order' . $url, 'SSL');
$url = '';
if (isset($this->request->get['filter_name'])) {
$url .= '&filter_name=' . $this->request->get['filter_name'];
}
if (isset($this->request->get['filter_model'])) {
$url .= '&filter_model=' . $this->request->get['filter_model'];
}
if (isset($this->request->get['filter_price'])) {
}
if (isset($this->request->get['filter_quantity'])) {
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
}
if (isset($this->request->get['filter_status'])) {
$url .= '&filter_status=' . $this->request->get['filter_status'];
}
if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) { $url .= '&order=' . $this->request->get['order'];
}
$pagination = new Pagination();
$pagination->total = $product_total; $pagination->page = $page;
$pagination->limit = $this->config->get('config_admin_limit');
$pagination->text = $this->language->get('text_pagination');
$pagination->url =
$this->url->link('catalog/product', 'token=' . $this->session->data['token'] . $url . '&page={page}', 'SSL');
$this->data['pagination'] = $pagination->render();
$this->data['filter_name'] = $filter_name; $this->data['filter_model'] = $filter_model; $this->data['filter_price'] = $filter_price; $this->data['filter_quantity'] =
$this->data['filter_status'] = $filter_status;
$this->data['sort'] = $sort; $this->data['order'] = $order;
$this->layout = 'common/layout';
$this->template = 'catalog/product_list.tpl'; $this->children = array(
'common/header', 'common/footer', );
$this->response->setOutput($this->render()); }
private function getForm() {
$this->data['heading_title'] = $this->language->get('heading_title');
$this->data['text_enabled'] = $this->language->get('text_enabled');
$this->data['text_disabled'] = $this->language->get('text_disabled');
$this->data['text_none'] = $this->language->get('text_none');
$this->data['text_yes'] = $this->language->get('text_yes');
$this->data['text_no'] = $this->language->get('text_no');
$this->data['text_plus'] = $this->language->get('text_plus');
$this->data['text_minus'] = $this->language->get('text_minus');
$this->data['text_default'] = $this->language->get('text_default');
>data['text_image_manager'] = $this->language->get('text_image_manager');
$this->data['text_option'] = $this->language->get('text_option');
>data['text_option_value'] = $this->language->get('text_option_value');
$this->data['text_select'] = $this->language->get('text_select');
$this->language->get('text_none');
$this->data['text_percent'] = $this->language->get('text_percent');
$this->data['text_amount'] = $this->language->get('text_amount');
$this->data['entry_name'] = $this->language->get('entry_name');
>data['entry_meta_description'] = $this->language->get('entry_meta_description');
>data['entry_meta_keyword'] = $this->language->get('entry_meta_keyword');
>data['entry_description'] = $this->language->get('entry_description');
$this->data['entry_store'] = $this->language->get('entry_store');
$this->data['entry_keyword'] = $this->language->get('entry_keyword');
$this->data['entry_model'] = $this->language->get('entry_model');
$this->data['entry_sku'] = $this->language->get('entry_sku');
$this->data['entry_upc'] = $this->language->get('entry_upc');
>data['entry_location'] = $this->language->get('entry_location');
$this->data['entry_minimum'] = $this->language->get('entry_minimum');
>data['entry_manufacturer'] = $this->language->get('entry_manufacturer');
$this->data['entry_shipping'] = $this->language->get('entry_shipping');
>data['entry_date_available'] = $this->language->get('entry_date_available');
$this->data['entry_quantity'] = $this->language->get('entry_quantity');
>data['entry_stock_status'] = $this->language->get('entry_stock_status');
$this->data['entry_tax_class'] = $this->language->get('entry_tax_class');
$this->data['entry_price'] = $this->language->get('entry_price');
>data['entry_option_points'] = $this->language->get('entry_option_points');
>data['entry_subtract'] = $this->language->get('entry_subtract');
$this->data['entry_weight_class'] = $this->language->get('entry_weight_class');
$this->data['entry_weight'] = $this->language->get('entry_weight');
>data['entry_dimension'] = $this->language->get('entry_dimension');
$this->data['entry_length'] = $this->language->get('entry_length');
$this->data['entry_image'] = $this->language->get('entry_image');
$this->data['entry_download'] = $this->language->get('entry_download');
$this->data['entry_category'] = $this->language->get('entry_category');
$this->data['entry_related'] = $this->language->get('entry_related');
>data['entry_attribute'] = $this->language->get('entry_attribute');
$this->data['entry_text'] = $this->language->get('entry_text');
$this->data['entry_option'] = $this->language->get('entry_option');
>data['entry_option_value'] = $this->language->get('entry_option_value');
>data['entry_required'] = $this->language->get('entry_required');
>data['entry_sort_order'] = $this->language->get('entry_sort_order');
$this->data['entry_status'] = $this->language->get('entry_status');
>data['entry_customer_group'] = $this->language->get('entry_customer_group');
>data['entry_date_start'] = $this->language->get('entry_date_start');
>data['entry_date_end'] = $this->language->get('entry_date_end');
>data['entry_priority'] = $this->language->get('entry_priority');
>data['entry_customer_group'] = $this->language->get('entry_customer_group');
$this->data['entry_reward'] = $this->language->get('entry_reward');
$this->data['entry_layout'] = $this->language->get('entry_layout');
$this->data['button_save'] = $this->language->get('button_save');
$this->data['button_cancel'] = $this->language->get('button_cancel');
>data['button_add_attribute'] = $this->language->get('button_add_attribute');
>data['button_add_option'] = $this->language->get('button_add_option');
>data['button_add_option_value'] = $this->language->get('button_add_option_value');
>data['button_add_discount'] = $this->language->get('button_add_discount');
>data['button_add_special'] = $this->language->get('button_add_special');
>data['button_add_image'] = $this->language->get('button_add_image');
$this->data['button_remove'] = $this->language->get('button_remove');
$this->data['tab_general'] = $this->language->get('tab_general');
$this->data['tab_data'] = $this->language->get('tab_data');
$this->data['tab_attribute'] = $this->language->get('tab_attribute');
$this->data['tab_option'] = $this->language->get('tab_option');
$this->data['tab_discount'] = $this->language->get('tab_discount');
$this->data['tab_special'] = $this->language->get('tab_special');
$this->data['tab_image'] = $this->language->get('tab_image');
$this->data['tab_links'] = $this->language->get('tab_links');
$this->data['tab_design'] = $this->language->get('tab_design');
if (isset($this->error['warning'])) { >data['error_warning'] = $this->error['warning'];
} else {
$this->data['error_warning'] = ''; }
if (isset($this->error['name'])) { >data['error_name'] = $this->error['name'];
} else {
$this->data['error_name'] = array(); }
if (isset($this->error['meta_description'])) { $this->data['error_meta_description'] = $this->error['meta_description'];
} else {
$this->data['error_meta_description'] = array();
}
if (isset($this->error['description'])) { >data['error_description'] = $this->error['description'];
} else {
$this->data['error_description'] = array();
}
if (isset($this->error['model'])) { >data['error_model'] = $this->error['model'];
} else {
$this->data['error_model'] = ''; }
if (isset($this->error['date_available'])) { $this->data['error_date_available'] = $this->error['date_available'];
$this->data['error_date_available'] = ''; }
$url = '';
if (isset($this->request->get['filter_name'])) {
$url .= '&filter_name=' . $this->request->get['filter_name'];
}
if (isset($this->request->get['filter_model'])) {
$url .= '&filter_model=' . $this->request->get['filter_model'];
}
if (isset($this->request->get['filter_price'])) {
$url .= '&filter_price=' . $this->request->get['filter_price'];
}
if (isset($this->request->get['filter_quantity'])) {
$url .= '&filter_quantity=' . $this->request->get['filter_quantity'];
}
if (isset($this->request->get['filter_status'])) {
$url .= '&filter_status=' . $this->request->get['filter_status'];
}
if (isset($this->request->get['sort'])) { $url .= '&sort=' . $this->request->get['sort'];
}
if (isset($this->request->get['order'])) { $url .= '&order=' . $this->request->get['order'];
if (isset($this->request->get['page'])) { $url .= '&page=' . $this->request->get['page'];
}
$this->data['breadcrumbs'] = array();
$this->data['breadcrumbs'][] = array( 'text' => $this->language->get('text_home'),
'href' =>
$this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
'separator' => false );
$this->data['breadcrumbs'][] = array( 'text' => $this->language->get('heading_title'),
'href' =>
$this->url->link('catalog/product', 'token=' . $this->session->data['token'] . $url, 'SSL'),
'separator' => ' :: ' );
if (!isset($this->request->get['product_id'])) {
$this->data['action'] = >url->link('catalog/product/insert', 'token=' . $this->session->data['token'] . $url, 'SSL');
} else {
$this->data['action'] = >url->link('catalog/product/update', 'token=' . >session->data['token'] . '&product_id=' . $this->request->get['product_id'] . $url, 'SSL');
}
$this->data['cancel'] =
$this->url->link('catalog/product', 'token=' . $this->session->data['token'] . $url, 'SSL');
if (isset($this->request->get['product_id']) && ($this->request->server['REQUEST_METHOD'] != 'POST')) { $product_info =
$this- >model_catalog_product->getProduct($this->request->get['product_id']);
}
$this->load->model('localisation/language');
>data['languages'] = $this->model_localisation_language->getLanguages();
if (isset($this->request->post['product_description'])) {
$this->data['product_description'] = $this->request->post['product_description'];
} elseif (isset($product_info)) {
$this->data['product_description'] =
$this->model_catalog_product- >getProductDescriptions($this->request->get['product_id']);
} else {
$this->data['product_description'] = array();
}
if (isset($this->request->post['model'])) { $this->data['model'] = $this->request->post['model'];
} elseif (isset($product_info)) { $this->data['model'] = $product_info['model'];
} else {
$this->data['model'] = ''; }
if (isset($this->request->post['sku'])) { $this->data['sku'] = $this->request->post['sku'];
} elseif (isset($product_info)) {
$this->data['sku'] = $product_info['sku']; } else {
}
if (isset($this->request->post['upc'])) { $this->data['upc'] = $this->request->post['upc'];
} elseif (isset($product_info)) {
$this->data['upc'] = $product_info['upc']; } else {
$this->data['upc'] = ''; }
if (isset($this->request->post['location'])) { $this->data['location'] = $this->request->post['location'];
} elseif (isset($product_info)) { $this->data['location'] = $product_info['location'];
} else {
$this->data['location'] = ''; }
$this->load->model('setting/store');
>data['stores'] = $this->model_setting_store->getStores();
if (isset($this->request->post['product_store'])) {
>data['product_store'] = $this->request->post['product_store'];
} elseif (isset($product_info)) {
>data['product_store'] = $this- >model_catalog_product->getProductStores($this->request->get['product_id']);
} else {
$this->data['product_store'] = array(0); }
if (isset($this->request->post['keyword'])) { $this->data['keyword'] = $this->request->post['keyword'];
} else {
$this->data['keyword'] = ''; }
if (isset($this->request->post['product_tag'])) {
>data['product_tag'] = $this->request->post['product_tag'];
} elseif (isset($product_info)) {
>data['product_tag'] = $this- >model_catalog_product->getProductTags($this->request->get['product_id']);
} else {
$this->data['product_tag'] = array(); }
if (isset($this->request->post['image'])) { $this->data['image'] = $this->request->post['image'];
} elseif (isset($product_info)) { $this->data['image'] =
$product_info['image']; } else {
$this->data['image'] = ''; }
$this->load->model('tool/image');
if (isset($product_info) &&
$product_info['image'] && file_exists(DIR_IMAGE . $product_info['image'])) {
>data['preview'] =
$this->model_tool_image->resize($product_info['image'], 100, 100);
} else {
>data['preview'] =
$this->model_tool_image->resize('no_image.jpg', 100, 100); }
$this->load->model('catalog/manufacturer');
>data['manufacturers'] =
if (isset($this->request->post['manufacturer_id'])) {
>data['manufacturer_id'] = $this->request->post['manufacturer_id'];
} elseif (isset($product_info)) { $this->data['manufacturer_id'] = $product_info['manufacturer_id'];
} else {
$this->data['manufacturer_id'] = 0; }
if (isset($this->request->post['shipping'])) { $this->data['shipping'] = $this->request->post['shipping'];
} elseif (isset($product_info)) { $this->data['shipping'] = $product_info['shipping'];
} else {
$this->data['shipping'] = 1; }
if (isset($this->request->post['date_available'])) {
>data['date_available'] = $this->request->post['date_available'];
} elseif (isset($product_info)) {
$this->data['date_available'] = date('Y-m-d', strtotime($product_info['date_available']));
} else {
$this->data['date_available'] = date('Y-m-d', time()-86400);
}
if (isset($this->request->post['quantity'])) { $this->data['quantity'] = $this->request->post['quantity'];
} elseif (isset($product_info)) { $this->data['quantity'] = $product_info['quantity'];
} else {
$this->data['quantity'] = 1; }
$this->data['minimum'] = $this->request->post['minimum'];
} elseif (isset($product_info)) { $this->data['minimum'] = $product_info['minimum'];
} else {
$this->data['minimum'] = 1; }
if (isset($this->request->post['subtract'])) { $this->data['subtract'] = $this->request->post['subtract'];
} elseif (isset($product_info)) { $this->data['subtract'] = $product_info['subtract'];
} else {
$this->data['subtract'] = 1; }
if (isset($this->request->post['sort_order'])) {
>data['sort_order'] = $this->request->post['sort_order'];
} elseif (isset($product_info)) { $this->data['sort_order'] = $product_info['sort_order'];
} else {
$this->data['sort_order'] = 1; }
$this->load->model('localisation/stock_status');
>data['stock_statuses'] =
$this->model_localisation_stock_status->getStockStatuses();
if (isset($this->request->post['stock_status_id'])) {
>data['stock_status_id'] = $this->request->post['stock_status_id'];
} else if (isset($product_info)) {
$this->data['stock_status_id'] = $product_info['stock_status_id'];
>data['stock_status_id'] = $this->config->get('config_stock_status_id');
}
if (isset($this->request->post['price'])) { $this->data['price'] = $this->request->post['price'];
} else if (isset($product_info)) { $this->data['price'] = $product_info['price'];
} else {
$this->data['price'] = ''; }
if (isset($this->request->post['status'])) { $this->data['status'] = $this->request->post['status'];
} else if (isset($product_info)) { $this->data['status'] = $product_info['status'];
} else {
$this->data['status'] = 1; }
$this->load->model('localisation/tax_class');
>data['tax_classes'] = $this->model_localisation_tax_class->getTaxClasses();
if (isset($this->request->post['tax_class_id'])) {
>data['tax_class_id'] = $this->request->post['tax_class_id'];
} else if (isset($product_info)) {
$this->data['tax_class_id'] = $product_info['tax_class_id'];
} else {
$this->data['tax_class_id'] = 0; }
if (isset($this->request->post['weight'])) { $this->data['weight'] = $this->request->post['weight'];
$this->data['weight'] = $product_info['weight'];
} else {
$this->data['weight'] = ''; }
$this->load->model('localisation/weight_class');
>data['weight_classes'] =
$this->model_localisation_weight_class->getWeightClasses();
$weight_info =
$this-
>model_localisation_weight_class- >getWeightClassDescriptionByUnit($this->config->get('config_weight_class'));
if (isset($this->request->post['weight_class_id'])) {
>data['weight_class_id'] = $this->request->post['weight_class_id'];
} elseif (isset($product_info)) {
$this->data['weight_class_id'] = $product_info['weight_class_id'];
} elseif (isset($weight_info)) {
$this->data['weight_class_id'] = $weight_info['weight_class_id'];
} else {
$this->data['weight_class_id'] = ''; }
if (isset($this->request->post['length'])) { $this->data['length'] = $this->request->post['length'];
} elseif (isset($product_info)) { $this->data['length'] = $product_info['length'];
} else {
$this->data['length'] = ''; }
} elseif (isset($product_info)) { $this->data['width'] =
$product_info['width']; } else {
$this->data['width'] = ''; }
if (isset($this->request->post['height'])) { $this->data['height'] = $this->request->post['height'];
} elseif (isset($product_info)) { $this->data['height'] =
$product_info['height']; } else {
$this->data['height'] = ''; }
$this->load->model('localisation/length_class');
>data['length_classes'] =
$this->model_localisation_length_class->getLengthClasses();
$length_info =
$this-
>model_localisation_length_class- >getLengthClassDescriptionByUnit($this->config->get('config_length_class'));
if (isset($this->request->post['length_class_id'])) {
>data['length_class_id'] = $this->request->post['length_class_id'];
} elseif (isset($product_info)) {
$this->data['length_class_id'] = $product_info['length_class_id'];
} elseif (isset($length_info)) {
$this->data['length_class_id'] = $length_info['length_class_id'];
} else {
$this->data['length_class_id'] = ''; }
>data['product_attributes'] = $this->request->post['product_attribute'];
} elseif (isset($product_info)) {
>data['product_attributes'] = $this-
>model_catalog_product->getProductAttributes($this->request->get['product_id']); } else {
$this->data['product_attributes'] = array();
}
if (isset($this->request->post['product_option'])) {
$product_options = $this->request->post['product_option'];
} elseif (isset($product_info)) { $product_options =
$this- >model_catalog_product->getProductOptions($this->request->get['product_id']);
} else {
$product_options = array(); }
$this->data['product_options'] = array();
foreach ($product_options as $product_option) { if ($product_option['type'] == 'select' || $product_option['type'] == 'radio' ||
$product_option['type'] == 'checkbox') {
$product_option_value_data = array();
foreach
($product_option['product_option_value'] as $product_option_value) {
$product_option_value_data[] = array(
'product_option_value_id' => $product_option_value['product_option_value_id'],
'option_value_id' => $product_option_value['option_value_id'],
'quantity' => $product_option_value['quantity'],
'price' => $product_option_value['price'],
'price_prefix' => $product_option_value['price_prefix'],
'points' => $product_option_value['points'],
'points_prefix' => $product_option_value['points_prefix'],
'weight' => $product_option_value['weight'],
'weight_prefix' => $product_option_value['weight_prefix']
); }
$this->data['product_options'][] = array(
'product_option_id' => $product_option['product_option_id'],
'option_id' => $product_option['option_id'],
'name' => $product_option['name'],
'type' => $product_option['type'],
'product_option_value' => $product_option_value_data,
'required' => $product_option['required']
); } else {
$this->data['product_options'][] = array(
'product_option_id' => $product_option['product_option_id'],
'option_id' => $product_option['option_id'],
'name' => $product_option['name'],
'type' => $product_option['type'],
'required' => $product_option['required']
); }
}
$this->load->model('sale/customer_group');
>data['customer_groups'] = $this->model_sale_customer_group->getCustomerGroups();
if (isset($this->request->post['product_discount'])) {
>data['product_discounts'] = $this->request->post['product_discount'];
} elseif (isset($product_info)) {
>data['product_discounts'] = $this-
>model_catalog_product->getProductDiscounts($this->request->get['product_id']); } else {
$this->data['product_discounts'] = array();
}
if (isset($this->request->post['product_special'])) {
>data['product_specials'] = $this->request->post['product_special'];
} elseif (isset($product_info)) {
>data['product_specials'] = $this-
>model_catalog_product->getProductSpecials($this->request->get['product_id']); } else {
$this->data['product_specials'] = array(); }
if (isset($this->request->post['product_image'])) {
$product_images = $this->request->post['product_image'];
} elseif (isset($product_info)) { $product_images =
} else {
$product_images = array(); }
$this->data['product_images'] = array();
foreach ($product_images as $product_image) { if ($product_image['image'] &&
file_exists(DIR_IMAGE . $product_image['image'])) { $image = $product_image['image']; } else {
$image = 'no_image.jpg'; }
$this->data['product_images'][] = array( 'image' => $image,
'preview' => $this->model_tool_image->resize($image, 100, 100)
); }
>data['no_image'] =
$this->model_tool_image->resize('no_image.jpg', 100, 100);
$this->load->model('catalog/download');
>data['downloads'] = $this->model_catalog_download->getDownloads();
if (isset($this->request->post['product_download'])) {
>data['product_download'] = $this->request->post['product_download'];
} elseif (isset($product_info)) {
>data['product_download'] = $this-
>model_catalog_product->getProductDownloads($this->request->get['product_id']); } else {
$this->data['product_download'] = array(); }
$this->load->model('catalog/category');
$this->model_catalog_category->getCategories(0);
if (isset($this->request->post['product_category'])) {
>data['product_category'] = $this->request->post['product_category'];
} elseif (isset($product_info)) {
>data['product_category'] = $this- >model_catalog_product->getProductCategories($this->request->get['product_id']);
} else {
$this->data['product_category'] = array(); }
if (isset($this->request->post['product_related'])) {
$products = $this->request->post['product_related'];
} elseif (isset($product_info)) {
$products = $this->model_catalog_product->getProductRelated($this->request->get['product_id']);
} else {
$products = array(); }
$this->data['product_related'] = array();
foreach ($products as $product_id) { $related_info =
$this->model_catalog_product->getProduct($product_id);
if ($related_info) {
$this->data['product_related'][] = array(
'product_id' => $related_info['product_id'],
'name' => $related_info['name']
); }
}
$this->request->post['points'];
} else if (isset($product_info)) { $this->data['points'] = $product_info['points'];
} else {
$this->data['points'] = ''; }
if (isset($this->request->post['product_reward'])) {
>data['product_reward'] = $this->request->post['product_reward'];
} elseif (isset($product_info)) {
>data['product_reward'] = $this- >model_catalog_product->getProductRewards($this->request->get['product_id']);
} else {
$this->data['product_reward'] = array(); }
if (isset($this->request->post['product_layout'])) {
>data['product_layout'] = $this->request->post['product_layout'];
} elseif (isset($product_info)) {
>data['product_layout'] = $this- >model_catalog_product->getProductLayouts($this->request->get['product_id']);
} else {
$this->data['product_layout'] = array(); }
$this->load->model('design/layout');
>data['layouts'] = $this->model_design_layout->getLayouts();
$this->template = 'catalog/product_form.tpl'; $this->children = array(
'common/header', 'common/footer', );
}
private function validateForm() {
if (!$this->user->hasPermission('modify', 'catalog/product')) {
$this->error['warning'] = $this->language->get('error_permission');
}
foreach ($this->request->post['product_description'] as $language_id => $value) {
if ((strlen(utf8_decode($value['name'])) < 1) || (strlen(utf8_decode($value['name'])) > 255)) {
$this->error['name'][$language_id] = $this->language->get('error_name');
}
}
if
(>request->post['model'])) < 1) || (strlen(utf8_decode($this->request->post['model'])) > 64)) {
$this->error['model'] = $this->language->get('error_model');
}
if ($this->error && !isset($this->error['warning'])) {
$this->error['warning'] = $this->language->get('error_warning');
}
if (!$this->error) { return true; } else {
return false; }
}
private function validateDelete() {
if (!$this->user->hasPermission('modify', 'catalog/product')) {
$this->error['warning'] = $this->language->get('error_permission');