File "shortcode.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/vikbooking/libraries/mvc/admin/tables/shortcode.php
File size: 646 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/** 
 * @package   	VikBooking - Libraries
 * @subpackage 	core
 * @author    	E4J s.r.l.
 * @copyright 	Copyright (C) 2018 E4J s.r.l. All Rights Reserved.
 * @license  	http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 * @link 		https://vikwp.com
 */

// No direct access to this file
defined('ABSPATH') or die('No script kiddies please!');

/**
 * VikBooking shortcode table.
 *
 * @since 1.4.4
 */
class VBOTableShortcode extends JTable
{
	/**
	 * Class constructor.
	 *
	 * @param 	object 	$db  The database driver instance.
	 */
	public function __construct($db)
	{
		parent::__construct('#__vikbooking_wpshortcodes', 'id', $db);
	}
}