|
|
|
รบกวนขอสอบถามความเข้าใจเกี่ยวกับ PHP OOP หน่อยครับ พอดีกำลังเริ่มต้่นศึกษาจากตัวอย่าง Class ครับ |
|
|
|
|
|
|
|
อันนี้ผมเริ่มศึกษาของ OpenCart นะครับ เกี่ยวกับการ insert ข้อมูล
Code (PHP)
public function insert() {
$this->language->load('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);
$this->session->data['success'] = $this->language->get('text_success');
$url = '';
if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
$this->redirect($this->url->link('catalog/category', 'token=' . $this->session->data['token'] . $url, 'SSL'));
}
$this->getForm();
}
จากตัวอย่าง ถ้ามีการเรียก function insert()
Code (PHP)
$this->load->model('catalog/category');
บันทัดนี้เรียกใช้งาน model จากไฟล์ category ใช่ไหมครับ
Code (PHP)
if (($this->request->server['REQUEST_METHOD'] == 'POST') && $this->validateForm()) {
$this->model_catalog_category->addCategory($this->request->post);
$this->session->data['success'] = $this->language->get('text_success');
$url = '';
if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
$this->redirect($this->url->link('catalog/category', 'token=' . $this->session->data['token'] . $url, 'SSL'));
}
บันทัดนี้ หากมีการ request ค่า มาเป็นค่า POST หรือ เช็คค่า validateForm
Code (PHP)
$this->model_catalog_category->addCategory($this->request->post);
จะทำหน้าที่ เพิ่มหมวดหมู่สินค่าลงใน DB โดยเรียกการทำงานภายใต้ Class addCategory ที่อยู่ใน Model
Code (PHP)
$this->session->data['success'] = $this->language->get('text_success');
บรรทัดนี้ คือ ถ้า session มี ข้อมูลส่งมาเป็น success ก็ให้ไปเรียกใช้ get('text_success'); เพื่อ response หรือ แสดงข้อความว่าเพิ่มข้อมูลสำเร็จ
Code (PHP)
if (isset($this->request->get['page'])) {
$url .= '&page=' . $this->request->get['page'];
}
บรรทัดนี้ คือ ถ้าค่า GET['PAGE'] มีค่า ก็กำหนดให้ &page= ค่า GET['PAGE'] เพื่อนำมาใช้กับ funcion pagination แบ่งหน้า
Code (PHP)
$this->redirect($this->url->link('catalog/category', 'token=' . $this->session->data['token'] . $url, 'SSL'));
บรรทัดนี้ คือ สั่งให้ redirect กลับไปยังหน้าเดิม และกำหนด ค่า token ตามด้วย $url แบ่งเพจ ถ้ามีค่า ใช่หรือไม่ครับ
Code (PHP)
public function addCategory($data) {
$this->db->query("INSERT INTO " . DB_PREFIX . "category SET parent_id = '" . (int)$data['parent_id'] . "', `top` = '" . (isset($data['top']) ? (int)$data['top'] : 0) . "', `column` = '" . (int)$data['column'] . "', sort_order = '" . (int)$data['sort_order'] . "', status = '" . (int)$data['status'] . "', date_modified = NOW(), date_added = NOW()");
$category_id = $this->db->getLastId();
if (isset($data['image'])) {
$this->db->query("UPDATE " . DB_PREFIX . "category SET image = '" . $this->db->escape(html_entity_decode($data['image'], ENT_QUOTES, 'UTF-8')) . "' WHERE category_id = '" . (int)$category_id . "'");
}
foreach ($data['category_description'] as $language_id => $value) {
$this->db->query("INSERT INTO " . DB_PREFIX . "category_description SET category_id = '" . (int)$category_id . "', language_id = '" . (int)$language_id . "', name = '" . $this->db->escape($value['name']) . "', meta_keyword = '" . $this->db->escape($value['meta_keyword']) . "', meta_description = '" . $this->db->escape($value['meta_description']) . "', description = '" . $this->db->escape($value['description']) . "'");
}
// MySQL Hierarchical Data Closure Table Pattern
$level = 0;
$query = $this->db->query("SELECT * FROM `" . DB_PREFIX . "category_path` WHERE category_id = '" . (int)$data['parent_id'] . "' ORDER BY `level` ASC");
foreach ($query->rows as $result) {
$this->db->query("INSERT INTO `" . DB_PREFIX . "category_path` SET `category_id` = '" . (int)$category_id . "', `path_id` = '" . (int)$result['path_id'] . "', `level` = '" . (int)$level . "'");
$level++;
}
$this->db->query("INSERT INTO `" . DB_PREFIX . "category_path` SET `category_id` = '" . (int)$category_id . "', `path_id` = '" . (int)$category_id . "', `level` = '" . (int)$level . "'");
if (isset($data['category_filter'])) {
foreach ($data['category_filter'] as $filter_id) {
$this->db->query("INSERT INTO " . DB_PREFIX . "category_filter SET category_id = '" . (int)$category_id . "', filter_id = '" . (int)$filter_id . "'");
}
}
if (isset($data['category_store'])) {
foreach ($data['category_store'] as $store_id) {
$this->db->query("INSERT INTO " . DB_PREFIX . "category_to_store SET category_id = '" . (int)$category_id . "', store_id = '" . (int)$store_id . "'");
}
}
// Set which layout to use with this category
if (isset($data['category_layout'])) {
foreach ($data['category_layout'] as $store_id => $layout) {
if ($layout['layout_id']) {
$this->db->query("INSERT INTO " . DB_PREFIX . "category_to_layout SET category_id = '" . (int)$category_id . "', store_id = '" . (int)$store_id . "', layout_id = '" . (int)$layout['layout_id'] . "'");
}
}
}
if ($data['keyword']) {
$this->db->query("INSERT INTO " . DB_PREFIX . "url_alias SET query = 'category_id=" . (int)$category_id . "', keyword = '" . $this->db->escape($data['keyword']) . "'");
}
$this->cache->delete('category');
}
พอดีผมนั่งศึกษาหาข้อมูลเกี่ยวกับ PHP OOP แบบ MVC เลยนั่งแกะ CODE ดูวันนี้เพื่อทำความเข้าใจ แต่ไม่รู้ว่าผมจะเข้าใจถูกต้องไหมครับ
Tag : PHP
|
|
|
|
|
|
Date :
2014-09-18 00:35:01 |
By :
asustak |
View :
1172 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|