Log message #4220703

# At Username Text
# Jan 2nd 2020, 01:06 challgren @luizcmarin theres a dev-cake-4.x branch that you can use
# Jan 2nd 2020, 00:33 luizcmarin @admad in https://github.com/UseMuffin/Orderly change public function initialize(array $config) to public function initialize(array $config): void and it works cool in 4.0. thank you
# Jan 1st 2020, 22:07 challgren Stems from https://sandbox.dereuromark.de/pages/best-practices
# Jan 1st 2020, 22:07 peppejaripappalardo thx @challgren
# Jan 1st 2020, 21:55 challgren The app_local.php overrides the app.php vars
# Jan 1st 2020, 21:54 peppejaripappalardo thx to all :)
# Jan 1st 2020, 21:54 peppejaripappalardo i dont understand :
# Jan 1st 2020, 21:54 peppejaripappalardo hello everyone, in cake 4, the database config, works only with app_local.php?
# Jan 1st 2020, 20:56 ndm no problem
# Jan 1st 2020, 20:55 Rob73 Works now, thanks again :)
# Jan 1st 2020, 20:55 Rob73 that's embarrassing '=D
# Jan 1st 2020, 20:53 ndm `zh_CN` vs `zh_CH`?
# Jan 1st 2020, 20:52 Rob73 src/Locale/zh_CN/default.po
# Jan 1st 2020, 20:51 ndm what's the path of your translation file?
# Jan 1st 2020, 20:48 Rob73 en_GB worked just now but zh_CH didin't
# Jan 1st 2020, 20:47 ndm maybe your translation files are in the wrong place
# Jan 1st 2020, 20:46 Rob73 for some reason it won't work.
# Jan 1st 2020, 20:41 ndm That looks OK, yes, assuming the relevant `msgstr` entries exist. Translations are being cached, try clearing `tmp/cache/persistent`.
# Jan 1st 2020, 20:39 Rob73 Time format changes as you can see
# Jan 1st 2020, 20:38 Rob73 I mean, generally that should work when the language is changed I have en_GB and zh_CH but the text wont change to chinese
# Jan 1st 2020, 20:37 ndm Not sure what you mean by "correct"?
# Jan 1st 2020, 20:34 Rob73 this is the correct method right ?
# Jan 1st 2020, 20:34 Rob73 <?php echo __("Greetings governor {0} !", [$this->request->getSession()->read('Auth.User.username')]); ?>
# Jan 1st 2020, 20:33 Rob73 msgid "Greetings governor {0} !"
# Jan 1st 2020, 20:33 Rob73 one more question real quick.
# Jan 1st 2020, 20:32 ndm you're welcome
# Jan 1st 2020, 20:32 Rob73 this is very useful :) Thanks again :D
# Jan 1st 2020, 20:31 Rob73 if(!($fams_b->ark_date->isPast()) AND $fams_b->ark_date->isWithinNext('1 week'))
# Jan 1st 2020, 20:31 ndm Alrighty, then `iasPast()` is fine :)
# Jan 1st 2020, 20:30 Rob73 _now_ H:M:S
# Jan 1st 2020, 20:29 ndm Just to make sure, you want to check whether it's before _now_, not before _the start of the current day_?
# Jan 1st 2020, 20:27 Rob73 '$arker_d->ark_date->isPast()' this worked. I will look into it more and update my project. Thank you
# Jan 1st 2020, 20:24 ndm https://book.cakephp.org/4/en/core-libraries/time.html#comparing-with-the-present
# Jan 1st 2020, 20:23 ndm https://book.cakephp.org/chronos/1/en/index.html
# Jan 1st 2020, 20:23 ndm The datetime objects that CakePHP uses offer all sorts of comparison methods, and they can be compared against each other using standard PHP comparison operators. Your check looks like you want to test for the past, ie whether `$arker_d->ark_date` is in the past: `$arker_d->ark_date->isPast()`
# Jan 1st 2020, 20:21 Rob73 check if $today is bigger than $arker_d->ark_date
# Jan 1st 2020, 20:20 Rob73 if it's bigger
# Jan 1st 2020, 20:20 ndm So you want to check if a given date is today?
# Jan 1st 2020, 20:20 Rob73 but it's breaking
# Jan 1st 2020, 20:20 Rob73 it's rather simple
# Jan 1st 2020, 20:19 Rob73 $today = date("Y-m-d\TH:i:sP");