* @copyright 2007-2017 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ /** * @property Configuration $object */ class AdminPPreferencesControllerCore extends AdminController { public function __construct() { $this->bootstrap = true; $this->className = 'Configuration'; $this->table = 'configuration'; parent::__construct(); $warehouse_list = Warehouse::getWarehouses(); $warehouse_no = array(array('id_warehouse' => 0,'name' => $this->l('No default warehouse (default setting)'))); $warehouse_list = array_merge($warehouse_no, $warehouse_list); $this->fields_options = array( 'products' => array( 'title' => $this->l('Room Types (General)'), 'fields' => array( 'PS_CATALOG_MODE' => array( 'title' => $this->l('Catalog mode'), 'hint' => $this->l('When active, all booking features will be disabled.'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => false, 'type' => 'bool' ), // 'PS_COMPARATOR_MAX_ITEM' => array( // 'title' => $this->l('Product comparison'), // 'hint' => $this->l('Set the maximum number of products that can be selected for comparison. Set to "0" to disable this feature.'), // 'validation' => 'isUnsignedId', // 'required' => true, // 'cast' => 'intval', // 'type' => 'text' // ), 'PS_NB_DAYS_NEW_PRODUCT' => array( 'title' => $this->l('Number of days for which a room type is considered \'new\''), 'hint' => $this->l('The counting of days starts from room type creation date.'), 'validation' => 'isUnsignedInt', 'cast' => 'intval', 'type' => 'text' ), /*'PS_CART_REDIRECT' => array( 'title' => $this->l('Redirect after adding product to cart'), 'hint' => $this->l('Only for non-AJAX versions of the cart.'), 'cast' => 'intval', 'show' => true, 'required' => false, 'type' => 'radio', 'validation' => 'isBool', 'choices' => array( 0 => $this->l('Previous page'), 1 => $this->l('Cart summary') ) ),*/ 'PS_PRODUCT_SHORT_DESC_LIMIT' => array( 'title' => $this->l('Max size of short description'), 'hint' => $this->l('Set the maximum size of room type short description (in characters).'), 'validation' => 'isInt', 'cast' => 'intval', 'type' => 'text', 'suffix' => $this->l('characters'), ), /*'PS_QTY_DISCOUNT_ON_COMBINATION' => array( 'title' => $this->l('Quantity discounts based on'), 'hint' => $this->l('How to calculate quantity discounts.'), 'cast' => 'intval', 'show' => true, 'required' => false, 'type' => 'radio', 'validation' => 'isBool', 'choices' => array( 0 => $this->l('Products'), 1 => $this->l('Combinations') ) ),*/ 'PS_FORCE_FRIENDLY_PRODUCT' => array( 'title' => $this->l('Force update of friendly URL'), 'hint' => $this->l('When active, friendly URL will be updated on every save.'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => false, 'type' => 'bool' ) ), 'submit' => array('title' => $this->l('Save')) ), 'search' => array( 'title' => $this->l('Search'), 'fields' => array( 'PS_FRONT_SEARCH_TYPE' => array( 'title' => $this->l('Front end search type'), 'hint' => $this->l('Select search type for frontend. In "Occupancy wise search", occupancy field will be shown in the search panel and search will be based on required occupancy by the guest. In "Search without occupancy", All available room types will be shown for the search dates without any occupancy filter.'), 'cast' => 'intval', 'type' => 'select', 'list' => array( array('id' => HotelBookingDetail::SEARCH_TYPE_OWS, 'name' => $this->l('Occupancy wise search')), array('id' => HotelBookingDetail::SEARCH_TYPE_NORMAL, 'name' => $this->l('Search without occupancy')) ), 'identifier' => 'id', 'desc' => $this->l('Choose "Occupancy wise search" or "Search without occupancy". Occupancy search restriction will depend on this option selection at front end.'), ), 'PS_FRONT_OWS_SEARCH_ALGO_TYPE' => array( 'title' => $this->l('Front end occupancy wise search algorithm'), 'hint' => $this->l('In occupancy wise search at front end, you want to display only room types which are fully satisfying searched occupancy or you want to display all the available room types for the dates searched'), 'cast' => 'intval', 'type' => 'select', 'list' => array( array('id' => HotelBookingDetail::SEARCH_EXACT_ROOM_TYPE_ALGO, 'name' => $this->l('Show room types satisfying required occupancy')), array('id' => HotelBookingDetail::SEARCH_ALL_ROOM_TYPE_ALGO, 'name' => $this->l('Show all available room types')) ), 'identifier' => 'id', 'desc' => $this->l('This option is only for fully available rooms. For partially available rooms, always all possible rooms will be displayed.'), ), 'PS_FRONT_ROOM_UNIT_SELECTION_TYPE' => array( 'title' => $this->l('In front-end, add rooms to cart with'), 'hint' => $this->l('In Room occupancy, while adding rooms in cart customer has to select per room occupancy and in room quantity customer only has to select number of rooms.'), 'cast' => 'intval', 'type' => 'select', 'list' => array( array('id' => HotelBookingDetail::PS_ROOM_UNIT_SELECTION_TYPE_OCCUPANCY, 'name' => $this->l('Room Occupancy')), array('id' => HotelBookingDetail::PS_ROOM_UNIT_SELECTION_TYPE_QUANTITY, 'name' => $this->l('Rooms Quantity (No. of rooms)')) ), 'identifier' => 'id', ), 'PS_BACKOFFICE_SEARCH_TYPE' => array( 'title' => $this->l('Back-office search type'), 'hint' => $this->l('Select search type for Back-office. In "Occupancy wise search", occupancy field will be shown in the search panel and search will be based on required occupancy by the employee. In "Search without occupancy", All available room types will be shown for the search dates without any occupancy filter.'), 'cast' => 'intval', 'type' => 'select', 'list' => array( array('id' => HotelBookingDetail::SEARCH_TYPE_OWS, 'name' => $this->l('Occupancy wise search')), array('id' => HotelBookingDetail::SEARCH_TYPE_NORMAL, 'name' => $this->l('Search without occupancy')) ), 'identifier' => 'id', 'desc' => $this->l('Choose "Occupancy wise search" or "Search without occupancy". Occupancy search restriction will depend on this option selection at back-office.'), ), 'PS_BACKOFFICE_OWS_SEARCH_ALGO_TYPE' => array( 'title' => $this->l('Back-office occupancy wise search algorithm'), 'hint' => $this->l('In occupancy wise search at back-office, you want to display only room types which are fully satisfying searched occupancy or you want to display all the available room types for the dates searched.'), 'cast' => 'intval', 'type' => 'select', 'list' => array( array('id' => HotelBookingDetail::SEARCH_EXACT_ROOM_TYPE_ALGO, 'name' => $this->l('Show room types satisfying required occupancy')), array('id' => HotelBookingDetail::SEARCH_ALL_ROOM_TYPE_ALGO, 'name' => $this->l('Show all available room types')) ), 'identifier' => 'id', 'desc' => $this->l('This option is only for fully available rooms. For partially available rooms, always all possible rooms will be displayed.'), ), 'PS_BACKOFFICE_ROOM_BOOKING_TYPE' => array( 'title' => $this->l('In back-office, add rooms to cart with'), 'hint' => $this->l('In Room occupancy, while adding rooms in cart customer has to select per room occupancy and in room quantity customer only has to select number of rooms.'), 'cast' => 'intval', 'type' => 'select', 'list' => array( array('id' => HotelBookingDetail::PS_ROOM_UNIT_SELECTION_TYPE_OCCUPANCY, 'name' => $this->l('Room Occupancy')), array('id' => HotelBookingDetail::PS_ROOM_UNIT_SELECTION_TYPE_QUANTITY, 'name' => $this->l('Rooms Quantity (No. of rooms)')) ), 'identifier' => 'id', ), 'PS_LOS_RESTRICTION_BO' => array( 'title' => $this->l('Apply Min and Max lenght of stay restrictions for back-office search'), 'hint' => $this->l('While searching for available rooms from back-office, apply minimum and maximum lenght of stay restrictions'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => false, 'type' => 'bool' ), ), 'submit' => array('title' => $this->l('Save')) ), 'order_by_pagination' => array( 'title' => $this->l('Pagination'), 'fields' => array( 'PS_PRODUCTS_PER_PAGE' => array( 'title' => $this->l('Room types per page'), 'hint' => $this->l('Number of room types displayed per page. Default is 10.'), 'validation' => 'isUnsignedInt', 'cast' => 'intval', 'type' => 'text' ), 'PS_PRODUCTS_ORDER_BY' => array( 'title' => $this->l('Default order by'), 'hint' => $this->l('The order in which room types are displayed in the room type list.'), 'type' => 'select', 'list' => array( array('id' => '0', 'name' => $this->l('Room type name')), array('id' => '1', 'name' => $this->l('Room type price')), array('id' => '2', 'name' => $this->l('Room type add date')), array('id' => '3', 'name' => $this->l('Room type modified date')), // array('id' => '4', 'name' => $this->l('Position inside category')), // array('id' => '5', 'name' => $this->l('Manufacturer')), // array('id' => '6', 'name' => $this->l('Product quantity')), // array('id' => '7', 'name' => $this->l('Product reference')) ), 'identifier' => 'id' ), 'PS_PRODUCTS_ORDER_WAY' => array( 'title' => $this->l('Default order method'), 'hint' => $this->l('Default order method for room type list.'), 'type' => 'select', 'list' => array( array( 'id' => '0', 'name' => $this->l('Ascending') ), array( 'id' => '1', 'name' => $this->l('Descending') ) ), 'identifier' => 'id' ) ), 'submit' => array('title' => $this->l('Save')) ), 'fo_product_page' => array( 'title' => $this->l('Room type page'), 'fields' => array( /* 'PS_DISPLAY_QTIES' => array( 'title' => $this->l('Display available quantities on the product page'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => false, 'type' => 'bool' ),*/ /* 'PS_LAST_QTIES' => array( 'title' => $this->l('Display remaining quantities when the quantity is lower than'), 'hint' => $this->l('Set to "0" to disable this feature.'), 'validation' => 'isUnsignedId', 'required' => true, 'cast' => 'intval', 'type' => 'text' ),*/ 'PS_DISPLAY_JQZOOM' => array( 'title' => $this->l('Enable JqZoom instead of Fancybox on room type page'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => false, 'type' => 'bool' ), /*'PS_DISP_UNAVAILABLE_ATTR' => array( 'title' => $this->l('Display unavailable product attributes on the product page'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => false, 'type' => 'bool' ),*/ /*'PS_ATTRIBUTE_CATEGORY_DISPLAY' => array( 'title' => $this->l('Display the "add to cart" button when a product has attributes'), 'hint' => $this->l('Display or hide the "add to cart" button on category pages for products that have attributes forcing customers to see product details.'), 'validation' => 'isBool', 'cast' => 'intval', 'type' => 'bool' ),*/ /*'PS_ATTRIBUTE_ANCHOR_SEPARATOR' => array( 'title' => $this->l('Separator of attribute anchor on the product links'), 'type' => 'select', 'list' => array( array('id' => '-', 'name' => '-'), array('id' => ',', 'name' => ','), ), 'identifier' => 'id' ),*/ 'PS_DISPLAY_DISCOUNT_PRICE' => array( 'title' => $this->l('Display discounted price'), 'desc' => $this->l('In the volume discounts board, display the new price with the applied discount instead of showing the discount (ie. "-5%").'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => false, 'type' => 'bool' ), 'PS_SERVICE_PRODUCT_CATEGORY_FILTER' => array( 'title' => $this->l('Show category filter for service products'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => false, 'type' => 'bool' ), 'PS_HOTEL_IMAGES_PER_PAGE' => array( 'title' => $this->l('Number of hotel images per page'), 'hint' => $this->l('Number of hotel images displayed per page. Default is 9.'), 'validation' => 'isUnsignedInt', 'cast' => 'intval', 'type' => 'text' ), ), 'submit' => array('title' => $this->l('Save')) ), // 'stock' => array( // 'title' => $this->l('Products stock'), // 'fields' => array( // 'PS_ORDER_OUT_OF_STOCK' => array( // 'title' => $this->l('Allow ordering of out-of-stock products'), // 'hint' => $this->l('By default, the Add to Cart button is hidden when a product is unavailable. You can choose to have it displayed in all cases.'), // 'validation' => 'isBool', // 'cast' => 'intval', // 'required' => false, // 'type' => 'bool' // ), // 'PS_STOCK_MANAGEMENT' => array( // 'title' => $this->l('Enable stock management'), // 'validation' => 'isBool', // 'cast' => 'intval', // 'required' => false, // 'type' => 'bool', // 'js' => array( // 'on' => 'onchange="stockManagementActivationAuthorization()"', // 'off' => 'onchange="stockManagementActivationAuthorization()"' // ) // ), // 'PS_ADVANCED_STOCK_MANAGEMENT' => array( // 'title' => $this->l('Enable advanced stock management'), // 'hint' => $this->l('Allows you to manage physical stock, warehouses and supply orders in a new Stock menu.'), // 'validation' => 'isBool', // 'cast' => 'intval', // 'required' => false, // 'type' => 'bool', // 'visibility' => Shop::CONTEXT_ALL, // 'js' => array( // 'on' => 'onchange="advancedStockManagementActivationAuthorization()"', // 'off' => 'onchange="advancedStockManagementActivationAuthorization()"' // ) // ), // 'PS_FORCE_ASM_NEW_PRODUCT' => array( // 'title' => $this->l('New products use advanced stock management'), // 'hint' => $this->l('New products will automatically use advanced stock management and depends on stock, but no warehouse will be selected'), // 'validation' => 'isBool', // 'cast' => 'intval', // 'required' => false, // 'type' => 'bool', // 'visibility' => Shop::CONTEXT_ALL, // ), // 'PS_DEFAULT_WAREHOUSE_NEW_PRODUCT' => array( // 'title' => $this->l('Default warehouse on new products'), // 'hint' => $this->l('Automatically set a default warehouse when new product is created'), // 'type' => 'select', // 'list' => $warehouse_list, // 'identifier' => 'id_warehouse' // ), // 'PS_PACK_STOCK_TYPE' => array( // 'title' => $this->l('Default pack stock management'), // 'type' => 'select', // 'list' =>array( // array( // 'pack_stock' => 0, // 'name' => $this->l('Decrement pack only.') // ), // array( // 'pack_stock' => 1, // 'name' => $this->l('Decrement products in pack only.') // ), // array( // 'pack_stock' => 2, // 'name' => $this->l('Decrement both.') // ), // ), // 'identifier' => 'pack_stock', // ), // ), // 'bottom' => '', // 'submit' => array('title' => $this->l('Save')) // ), 'fo_search_filters' => array( 'title' => $this->l('Search Results Page Filters'), 'icon' => 'icon-search', 'fields' => array( 'SHOW_AMENITIES_FILTER' => array( 'title' => $this->l('Show Amenities filter'), 'hint' => $this->l('Enable to display Amenities filter.'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => false, 'type' => 'bool', ), 'SHOW_PRICE_FILTER' => array( 'title' => $this->l('Show Price filter'), 'hint' => $this->l('Enable to display Price filter.'), 'validation' => 'isBool', 'cast' => 'intval', 'required' => false, 'type' => 'bool', ), ), 'submit' => array('title' => $this->l('Save')) ), ); } public function beforeUpdateOptions() { if (!Tools::getValue('PS_STOCK_MANAGEMENT', true)) { $_POST['PS_ORDER_OUT_OF_STOCK'] = 1; $_POST['PS_DISPLAY_QTIES'] = 0; } // if advanced stock management is disabled, updates concerned tables if (Configuration::get('PS_ADVANCED_STOCK_MANAGEMENT') == 1 && (int)Tools::getValue('PS_ADVANCED_STOCK_MANAGEMENT') == 0) { $id_shop_list = Shop::getContextListShopID(); $sql_shop = 'UPDATE `'._DB_PREFIX_.'product_shop` SET `advanced_stock_management` = 0 WHERE `advanced_stock_management` = 1 AND (`id_shop` = '.implode(' OR `id_shop` = ', $id_shop_list).')'; $sql_stock = 'UPDATE `'._DB_PREFIX_.'stock_available` SET `depends_on_stock` = 0, `quantity` = 0 WHERE `depends_on_stock` = 1 AND (`id_shop` = '.implode(' OR `id_shop` = ', $id_shop_list).')'; $sql = 'UPDATE `'._DB_PREFIX_.'product` SET `advanced_stock_management` = 0 WHERE `advanced_stock_management` = 1 AND (`id_shop_default` = '.implode(' OR `id_shop_default` = ', $id_shop_list).')'; Db::getInstance()->execute($sql_shop); Db::getInstance()->execute($sql_stock); Db::getInstance()->execute($sql); } if (Tools::getValue('PS_FRONT_SEARCH_TYPE') == HotelBookingDetail::SEARCH_TYPE_OWS) { $_POST['PS_FRONT_ROOM_UNIT_SELECTION_TYPE'] = HotelBookingDetail::PS_ROOM_UNIT_SELECTION_TYPE_OCCUPANCY; } if (Tools::getValue('PS_BACKOFFICE_SEARCH_TYPE') == HotelBookingDetail::SEARCH_TYPE_OWS) { $_POST['PS_BACKOFFICE_ROOM_BOOKING_TYPE'] = HotelBookingDetail::PS_ROOM_UNIT_SELECTION_TYPE_OCCUPANCY; } if (Tools::getIsset('PS_CATALOG_MODE')) { Tools::clearSmartyCache(); Media::clearCache(); } } public function setMedia() { parent::setMedia(); Media::addJsDef(array( 'SEARCH_TYPE_OWS' => HotelBookingDetail::SEARCH_TYPE_OWS )); $this->addJS(_PS_JS_DIR_.'admin/ppreferences.js'); } }