????

Your IP : 216.73.216.79


Current Path : /home/arabianr/public_html/wp-content/plugins/imagify/inc/3rd-party/nextgen-gallery/classes/
Upload File :
Current File : //home/arabianr/public_html/wp-content/plugins/imagify/inc/3rd-party/nextgen-gallery/classes/DB.php

<?php
namespace Imagify\ThirdParty\NGG;

use Imagify\Traits\InstanceGetterTrait;

/**
 * Imagify NextGen Gallery DB class.
 *
 * @since  1.5
 * @author Jonathan Buttigieg
 */
class DB extends \Imagify_Abstract_DB {
	use InstanceGetterTrait;

	/**
	 * Class version.
	 *
	 * @var string
	 */
	const VERSION = '1.1.1';

	/**
	 * The suffix used in the name of the database table (so, without the wpdb prefix).
	 *
	 * @var    string
	 * @since  1.7
	 * @access protected
	 */
	protected $table = 'ngg_imagify_data';

	/**
	 * The version of our database table.
	 *
	 * @var    int
	 * @since  1.5
	 * @since  1.7 Not public anymore, now an integer.
	 * @access protected
	 */
	protected $table_version = 100;

	/**
	 * Tell if the table is the same for each site of a Multisite.
	 *
	 * @var    bool
	 * @since  1.7
	 * @access protected
	 */
	protected $table_is_global = false;

	/**
	 * The name of the primary column.
	 *
	 * @var    string
	 * @since  1.5
	 * @since  1.7 Not public anymore.
	 * @access protected
	 */
	protected $primary_key = 'pid';

	/**
	 * Whitelist of columns.
	 *
	 * @since  1.5
	 * @access public
	 * @author Jonathan Buttigieg
	 *
	 * @return array
	 */
	public function get_columns() {
		return [
			'data_id'            => '%d',
			'pid'                => '%d',
			'optimization_level' => '%s',
			'status'             => '%s',
			'data'               => '%s',
		];
	}

	/**
	 * Default column values.
	 *
	 * @since  1.5
	 * @access public
	 * @author Jonathan Buttigieg
	 *
	 * @return array
	 */
	public function get_column_defaults() {
		return [
			'data_id'            => 0,
			'pid'                => 0,
			'optimization_level' => '',
			'status'             => '',
			'data'               => [],
		];
	}

	/**
	 * Get the query to create the table fields.
	 *
	 * @since  1.7
	 * @access protected
	 * @author Grégory Viguier
	 *
	 * @return string
	 */
	protected function get_table_schema() {
		return "
			data_id int(11) unsigned NOT NULL AUTO_INCREMENT,
			pid int(11) unsigned NOT NULL default 0,
			optimization_level varchar(1) NOT NULL default '',
			status varchar(30) NOT NULL default '',
			data longtext NOT NULL default '',
			PRIMARY KEY  (data_id),
			KEY pid (pid)";
	}
}