# |
Apr 16th 2017, 21:36 |
damiano |
hmic, are you using something to work with authorizations ? |
# |
Apr 16th 2017, 21:31 |
damiano |
i am also using the authenticate plugin...the problem is that there is no plugin to work with authorizations |
# |
Apr 16th 2017, 21:30 |
damiano |
hmic, i really like middlewares :D i just have added them to an existing application |
# |
Apr 16th 2017, 21:29 |
damiano |
eheh |
# |
Apr 16th 2017, 21:29 |
damiano |
hmic, works |
# |
Apr 16th 2017, 21:27 |
hmic |
one of the main features of middlewares ;-) |
# |
Apr 16th 2017, 21:27 |
damiano |
hmic, oh it is simple...ok i try thanks! |
# |
Apr 16th 2017, 21:26 |
hmic |
damiano, from a middleware, just return the response, dont call next(). thats it. no exit()! |
# |
Apr 16th 2017, 21:19 |
damiano |
exit() seems not elegant there :D |
# |
Apr 16th 2017, 21:19 |
damiano |
(somethings like exiting with exit()) |
# |
Apr 16th 2017, 21:16 |
damiano |
i should check one parameter if exists i will add a cookie then stop |
# |
Apr 16th 2017, 21:16 |
damiano |
i am doing that into a middleware |
# |
Apr 16th 2017, 21:16 |
damiano |
hi guys how to return 200 on response without content (without calling the controller etc) |
# |
Apr 16th 2017, 19:42 |
joop |
whats the way to use deeper association in $this->Auth->user() like $this->Auth->user(Role.name)? |
# |
Apr 16th 2017, 19:01 |
Yuv |
Description or Descriptions? |
# |
Apr 16th 2017, 18:46 |
developer1211 |
$this->loadModel('Description'); $this->layout = "admin_layout"; $this->set('title_for_layout', "Edit Page"); //echo 'id'.$id; if (!$id) { throw new NotFoundException(__('Invalid content')); } $description = $this->Description->findById($id); pr($description); exit; if (!$description) { throw new NotFoundException(__('Invalid content') |
# |
Apr 16th 2017, 18:46 |
developer1211 |
can anyone highlight mistake in the code? |
# |
Apr 16th 2017, 18:46 |
developer1211 |
I have a simple problem in edit |
# |
Apr 16th 2017, 18:45 |
developer1211 |
Hello guys |
# |
Apr 16th 2017, 18:25 |
joop |
thank you for your answer slackbot5 |
# |
Apr 16th 2017, 18:23 |
admad |
joop: AppController::beforeRender() { if ($admin) $this->viewBuilder()->layout('admin_layout'); } |
# |
Apr 16th 2017, 18:19 |
joop |
but don't know how can i do that in the controller |
# |
Apr 16th 2017, 18:19 |
joop |
i have already written admin_layout.ctp,user_layout.ctp |
# |
Apr 16th 2017, 18:18 |
joop |
is anyone who can tell me how can i use different layout for different users? |
# |
Apr 16th 2017, 18:17 |
joop |
Happy Easther to you all |
# |
Apr 16th 2017, 18:17 |
joop |
hello |
# |
Apr 16th 2017, 17:51 |
obinoob |
Yuv: my next move is to write it at the validator ;) |
# |
Apr 16th 2017, 17:40 |
Yuv |
:D |
# |
Apr 16th 2017, 17:39 |
obinoob |
Yuv: hehe ok not a problem I'm glad you had the the opportunity to say it ;) |
# |
Apr 16th 2017, 17:38 |
Yuv |
My net connect is slow, couldnt help you |
# |
Apr 16th 2017, 17:38 |
Yuv |
Cool |
# |
Apr 16th 2017, 17:38 |
obinoob |
*as |
# |
Apr 16th 2017, 17:37 |
obinoob |
Yuv: got it I can compare dates I wasn't sure I could do it has they are objects... |
# |
Apr 16th 2017, 17:29 |
obinoob |
Yuv: what I mean is that $given_date will never go behind Time::now()->subDays(7) |
# |
Apr 16th 2017, 17:28 |
obinoob |
but I need to assure that $given_date is never less that Time::now()->subDays(7) |
# |
Apr 16th 2017, 17:27 |
obinoob |
yes it works I mean I get now less 7 days |
# |
Apr 16th 2017, 17:25 |
Yuv |
doesn't work? |
# |
Apr 16th 2017, 17:24 |
obinoob |
yes |
# |
Apr 16th 2017, 17:24 |
Yuv |
obinoob: you posted this. did you try? Time::now()->subDays(7) |
# |
Apr 16th 2017, 17:20 |
obinoob |
*within |
# |
Apr 16th 2017, 17:20 |
obinoob |
How can I determine if a given date is width 7 days from now() ? |