Tutorial Extension  1.0.0
SellerDeck Extensions - Tutorial Extension
CSetupBase.php
1 <?php
2 
3 /**
4  * CSetupBase.php - Implementation of Setup table class.
5  *
6  * @package SellerDeck Extensions
7  *
8  * @author Péter Erdődi
9  * @copyright © SellerDeck Ltd 2015. All rights reserved.
10  */
11 
12 namespace SDExtension\DB\Table;
13 
14 class CSetupBase extends CTable
15  {
16 
17  /**
18  * @var string $m_sTable Table name
19  */
20  protected $m_sTable = 'Setup';
21 
22  /**
23  * @var string $m_sIdColumn ID Column name
24  */
25  protected $m_sIdColumn = 'Magic number';
26 
27  }