# |
May 7th 2021, 15:50 |
neon1024 |
https://github.com/cakephp/cakephp/blob/master/src/ORM/Query.php#L54 |
# |
May 7th 2021, 15:50 |
neon1024 |
In Query.php. :) |
# |
May 7th 2021, 15:48 |
kevin.pfeifer |
and on what object you are using it on |
# |
May 7th 2021, 15:48 |
kevin.pfeifer |
depends on in which context you are |
# |
May 7th 2021, 15:48 |
kevin.pfeifer |
well there are many `function max(` present in vendor |
# |
May 7th 2021, 15:46 |
neon1024 |
I didn’t find the file it was declared in! I searched the docs for max |
# |
May 7th 2021, 15:46 |
neon1024 |
I think it’s because that Query class has all that weird import stuff for the query trait, then the query ResultSet includes Collections, etc |
# |
May 7th 2021, 15:46 |
kevin.pfeifer |
you mean from the CollectionInterface? |
# |
May 7th 2021, 15:45 |
neon1024 |
But clicking it in PHP Storm takes me to an `@method` declaration which is a dead end and still doesn’t describe the params, it’s a bit frustrating :( |
# |
May 7th 2021, 15:44 |
neon1024 |
Hah, no, it’s in Collections apparently |
# |
May 7th 2021, 15:44 |
kevin.pfeifer |
you mean this one? https://github.com/cakephp/cakephp/blob/master/src/Database/FunctionsBuilder.php#L76 |
# |
May 7th 2021, 15:41 |
neon1024 |
I’ll guess that `int type` can be `1` :shrug: |
# |
May 7th 2021, 15:41 |
neon1024 |
:facepunch: |
# |
May 7th 2021, 15:41 |
neon1024 |
> max() > Calculate the max of a column. Assumes arguments are literal values. |
# |
May 7th 2021, 15:41 |
neon1024 |
I mean the docs are just as helpful |
# |
May 7th 2021, 15:40 |
neon1024 |
Just a docblock with type int |
# |
May 7th 2021, 15:40 |
neon1024 |
Anyone know how to use `max()` doesn’t seem to exist in the actual code |
# |
May 7th 2021, 13:55 |
kailas |
anyway, works now |
# |
May 7th 2021, 13:55 |
kailas |
@neon1024 ugh, i could have sworn i did just this before and it didn’t work… |
# |
May 7th 2021, 13:46 |
kevin.pfeifer |
reasons is explained here https://github.com/cakephp/cakephp/pull/14912 |
# |
May 7th 2021, 13:45 |
kevin.pfeifer |
ah but here https://github.com/cakephp/cakephp/blob/master/src/ORM/Behavior.php#L189 |
# |
May 7th 2021, 13:45 |
kevin.pfeifer |
I don't see any deprecation warnings here :thinking_face: https://github.com/cakephp/cakephp/blob/master/src/ORM/Table.php#L386 |
# |
May 7th 2021, 13:43 |
greg138 |
Contrary to how most other classes have gone, the base class says that `getTable` is deprecated, and `table` is preferred. |
# |
May 7th 2021, 13:23 |
neon1024 |
I can see that the Timestamp behaviour uses `$this->table()` https://github.com/cakephp/cakephp/blob/master/src/ORM/Behavior/TimestampBehavior.php#L214 |
# |
May 7th 2021, 13:20 |
kailas |
i tried |
# |
May 7th 2021, 13:20 |
kailas |
weird |
# |
May 7th 2021, 13:18 |
neon1024 |
I mean I use `$this->getTable()` |
# |
May 7th 2021, 13:18 |
kailas |
@neon1024 |
# |
May 7th 2021, 13:17 |
kailas |
nice. any pointers how? i’m having trouble figuring out how to access the table object that the behavior has been instantiated <?> in |
# |
May 7th 2021, 13:10 |
neon1024 |
Yep |
# |
May 7th 2021, 13:06 |
kailas |
I’ve created a behavior. To fully use it, i need to create a belongsTo association for any table that uses the behavior. i’d like for the behavior to add that association. is it possible to do that in the initialize function of the behavior? |
# |
May 7th 2021, 12:53 |
neon1024 |
Thanks again @ndm solved by just loading the routes! :thumbsup: |
# |
May 7th 2021, 12:48 |
neon1024 |
Ah well |
# |
May 7th 2021, 12:48 |
neon1024 |
Works in 3.9 too |
# |
May 7th 2021, 12:47 |
neon1024 |
The routes are there in the controller if I dump them |
# |
May 7th 2021, 12:47 |
neon1024 |
I was just testing the component |
# |
May 7th 2021, 12:26 |
ndm |
Routes will not load themselves in regular tests. Why don't you use integration tests? :worried: |
# |
May 7th 2021, 12:19 |
neon1024 |
Here is what the test looks like if anyone has any ideas why the routing wouldn’t work just in this test-case |
# |
May 7th 2021, 12:01 |
neon1024 |
The test does build a Request object to inject into the controller which is what made me wonder |
# |
May 7th 2021, 12:00 |
neon1024 |
Does the routing rely on the request beyond just mapping to a controller? I have a unit test which throws a missing route, when it works fine in my application |
# |
May 7th 2021, 11:37 |
slackebot |
'node_modules/packery/dist/packery.pkgd.min.js', 'node_modules/select2/dist/js/select2.js', 'node_modules/toastify-js/src/toastify.js', 'node_modules/sweetalert2/dist/sweetalert2.js', ... you custom js modules ... ], base: 'source/js', filename: 'main.js', dest: "./webroot/js"``` And in your templates/layout/default.php you just include the generated main.js `*<?=* $this->Html->script( 'main.js' ) *?>*` |