# |
Jul 4th 2018, 11:54 |
ldsign |
Can you have a look? |
# |
Jul 4th 2018, 11:54 |
ldsign |
namespace App\Model\Entity; use Acl\Model\Entity\Aco as ParentAco; class Aco extends ParentAco { protected $_virtual = ['text']; /** * Create virtual field "text" * * @return string text */ protected function _getText() { if (empty($this->_properties['text'])) { return $this->_properties['alias']; } return $this->_properties['text']; } } |
# |
Jul 4th 2018, 11:54 |
ldsign |
Thanks - Ive tried that but it does not work :( |
# |
Jul 4th 2018, 11:52 |
admad |
@mark you can try overring View::_evaluate() and adding the `extend()` call before `include` statement |
# |
Jul 4th 2018, 11:50 |
mark |
oops |
# |
Jul 4th 2018, 11:50 |
cliper |
hi guys, trying to sort this out quick, so im pasting into multiple support channels atm |
# |
Jul 4th 2018, 11:48 |
mark |
Hi guys, just a quick question. :) is there a way to extend a view template in AppView class? I'm looking for a solution on not repeating any code that I put in my template.ctp file that looks like this: $this->extend('../Layout/TwitterBootstrap/dashboard'); and want to move it to AppView so I could just define like, if ($this->requests->controller) are Pages, Dealers, or whatever I could just use that extend statement there.. :) |
# |
Jul 4th 2018, 11:31 |
josbeir |
$request = $this->getRequest()->withData('key', 'value'); $this->setRequest($request); $this->Crud->execute(); |
# |
Jul 4th 2018, 11:30 |
josbeir |
if you really want to manipulate request data in your controller you could just do that in your action and then call $this->Crud->execute(), havent done that myself but should work |
# |
Jul 4th 2018, 11:28 |
josbeir |
but if we are talking about marshalling, beforeMarshal will probably be fine in most cases i think |
# |
Jul 4th 2018, 11:27 |
josbeir |
not really, beforeSave can be used to perform controller logic before saving |
# |
Jul 4th 2018, 11:27 |
lubos |
but since it is in model, as you said (again correct) than this is nonsense event |
# |
Jul 4th 2018, 11:27 |
lubos |
http://crud.readthedocs.io/en/latest/events.html#crud-beforesave |
# |
Jul 4th 2018, 11:27 |
lubos |
like Crud.beforeSave |
# |
Jul 4th 2018, 11:26 |
lubos |
i meant if there is something like Crud.beforeMarshal event |
# |
Jul 4th 2018, 11:26 |
josbeir |
so that should work |
# |
Jul 4th 2018, 11:26 |
josbeir |
beforeMarshal is in the table, not controller |
# |
Jul 4th 2018, 11:25 |
lubos |
just trying to do workaround for form helper _ids which does not support joinData |
# |
Jul 4th 2018, 11:25 |
lubos |
anyone using Crud plugin, how to adjust data before marshaling? there is no such event as beforeMarshal. so I guess in edit I just do if request is put then and adjust data, right? |
# |
Jul 4th 2018, 11:24 |
lubos |
:+1: |
# |
Jul 4th 2018, 11:23 |
josbeir |
;) |
# |
Jul 4th 2018, 11:23 |
david |
thank you so much |
# |
Jul 4th 2018, 11:23 |
david |
x 60 solves it :slightly_smiling_face: |
# |
Jul 4th 2018, 11:23 |
david |
that was the problem |
# |
Jul 4th 2018, 11:22 |
josbeir |
after the browser closes that is. |
# |
Jul 4th 2018, 11:22 |
lubos |
but app.php.default comment is clear, it says minutes so @david just try to multiple ini configuration * 60, it might help |
# |
Jul 4th 2018, 11:22 |
josbeir |
anyway, on a side note, its not the best practice to persist sessions |
# |
Jul 4th 2018, 11:21 |
josbeir |
;) |
# |
Jul 4th 2018, 11:21 |
lubos |
@josbeir you are right, i just mixed minutes and seconds :slightly_smiling_face: sorry |
# |
Jul 4th 2018, 11:21 |
neon1024 |
Especially with mixed configuration |
# |
Jul 4th 2018, 11:21 |
neon1024 |
This use-case is a good highlight of your point @lubos |
# |
Jul 4th 2018, 11:20 |
josbeir |
timeout is minutes so that is correct |
# |
Jul 4th 2018, 11:20 |
lubos |
we were discussing this before, might be confusing use sometimes seconds sometimes minutes |
# |
Jul 4th 2018, 11:20 |
lubos |
rather 1440/60 for `Session.timeout` |
# |
Jul 4th 2018, 11:19 |
josbeir |
you should indeed to 1440*60 for the ini config |
# |
Jul 4th 2018, 11:19 |
neon1024 |
So perhaps your cake setting is 1440 minutes, and your ini setting is 1440 seconds |
# |
Jul 4th 2018, 11:18 |
neon1024 |
As I’m certain the Cake setting is minutes, and the ini setting is seconds |
# |
Jul 4th 2018, 11:18 |
neon1024 |
Or your Auth config, conflicts with your PHP session lifetime ini setting |
# |
Jul 4th 2018, 11:18 |
neon1024 |
I would imagine that your configuration is incorrect then |
# |
Jul 4th 2018, 11:17 |
josbeir |
because by default the cookie expires when the browser session is closed |
# |
Jul 4th 2018, 11:16 |
josbeir |
and the cookie experiation time is also correct? |