first commit

This commit is contained in:
2025-01-06 20:47:25 +01:00
commit 3bdbd78c2f
25591 changed files with 3586440 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
/**
* 2010-2023 Bl Modules.
*
* If you wish to customize this module for your needs,
* please contact the authors first for more information.
*
* It's not allowed selling, reselling or other ways to share
* this file or any other module files without author permission.
*
* @author Bl Modules
* @copyright 2010-2023 Bl Modules
* @license
*/
if (!defined('_PS_VERSION_')) {
exit;
}
class OrderSettings
{
const FILTER_DATE_NONE = 0;
const FILTER_DATE_TODAY = 1;
const FILTER_DATE_YESTERDAY = 2;
const FILTER_DATE_THIS_WEEK = 3;
const FILTER_DATE_THIS_MONTH = 4;
const FILTER_DATE_THIS_YEAR = 5;
const FILTER_DATE_CUSTOM_DAYS = 6;
const FILTER_DATE_DATE_RANGE = 7;
}