# |
Jul 2nd 2017, 05:34 |
royalty |
ie, not using $this->start allows me to actually put stuff in the block but appending to a block doesn't seem to work if i am "initializing a block with content" |
# |
Jul 2nd 2017, 05:33 |
royalty |
it works if i simply spit the block out, putting scripts in it via the template using the 'block' option |
# |
Jul 2nd 2017, 05:32 |
royalty |
basically i am creating a block in the layout like so $this->start('script-dependencies'); and then echo $this->Html->scripts into it and end the block, in the template i am trying to append to the block but anything i append simply doesn't show up |
# |
Jul 2nd 2017, 05:31 |
savant |
and can answer |
# |
Jul 2nd 2017, 05:31 |
savant |
maybe someone is on |
# |
Jul 2nd 2017, 05:31 |
savant |
ask away |
# |
Jul 2nd 2017, 05:31 |
royalty |
hello doubt anyone is on but i'm having some trouble |
# |
Jul 2nd 2017, 04:46 |
smarty24 |
thanks |
# |
Jul 2nd 2017, 04:40 |
savant |
https://book.cakephp.org/3.0/en/tutorials-and-examples/blog/blog.html |
# |
Jul 2nd 2017, 04:40 |
smarty24 |
Ok. Do you mean the tutorial on cakephp website? |
# |
Jul 2nd 2017, 04:36 |
savant |
Just follow our tutorials and that will get you started |
# |
Jul 2nd 2017, 04:36 |
savant |
\o/ |
# |
Jul 2nd 2017, 04:36 |
savant |
there is your advice |
# |
Jul 2nd 2017, 04:36 |
savant |
So dont read and start coding |
# |
Jul 2nd 2017, 04:36 |
smarty24 |
Reading is important but I am not that type. I get bored after 10 minutes because I am not a faster reader... One of the reasons I dive into coding mostly to avoid bordom |
# |
Jul 2nd 2017, 04:19 |
spencdev |
I can't explain to you how much time I would have saved if I just actually read them |
# |
Jul 2nd 2017, 04:18 |
spencdev |
Read the docs... |
# |
Jul 2nd 2017, 04:17 |
savant |
Do your best! |
# |
Jul 2nd 2017, 04:16 |
savant |
Don’t give up? |
# |
Jul 2nd 2017, 04:16 |
smarty24 |
How are you. I am new to CakePHP or would say haven't started yet although it's on my to do list. Is there any advice I can get? |
# |
Jul 2nd 2017, 03:42 |
savant |
hi |
# |
Jul 2nd 2017, 03:41 |
smarty24 |
Hi I am new here. |
# |
Jul 2nd 2017, 02:26 |
ra7bi |
BTW , Thanks a lot Savant , |
# |
Jul 2nd 2017, 02:25 |
ra7bi |
but if this option is exist , i dont want to duplicate the code |
# |
Jul 2nd 2017, 02:25 |
savant |
there are composer packages that have them as a dependency you can call for |
# |
Jul 2nd 2017, 02:25 |
ra7bi |
im hardcoding the list in some file in my project |
# |
Jul 2nd 2017, 02:25 |
savant |
also doesnt really change that you’re hardcoding the list somewhere |
# |
Jul 2nd 2017, 02:25 |
ra7bi |
Yah correct |
# |
Jul 2nd 2017, 02:24 |
savant |
and that list would get out of date |
# |
Jul 2nd 2017, 02:24 |
savant |
that would mean they’d be hardcoded into the cake core |
# |
Jul 2nd 2017, 02:24 |
ra7bi |
Ah i thought there is an Form element for displaying kind of things |
# |
Jul 2nd 2017, 02:23 |
savant |
put it in the database and issue a find |
# |
Jul 2nd 2017, 02:23 |
ra7bi |
without hardcoding countries as array in controller and then call it from View |
# |
Jul 2nd 2017, 02:22 |
ra7bi |
is there any way to get countries list in the view ? |
# |
Jul 2nd 2017, 02:22 |
ra7bi |
i'v one more question |
# |
Jul 2nd 2017, 02:20 |
ra7bi |
Tks |
# |
Jul 2nd 2017, 02:20 |
ra7bi |
Sure , i'll check it out |
# |
Jul 2nd 2017, 02:19 |
savant |
there is an example there for changing the fields for a find(‘list’) |
# |
Jul 2nd 2017, 02:19 |
savant |
https://book.cakephp.org/3.0/en/orm/retrieving-data-and-resultsets.html#finding-key-value-pairs |
# |
Jul 2nd 2017, 02:18 |
ra7bi |
this is my query |
# |
Jul 2nd 2017, 02:18 |
ra7bi |
``` $diseases = $this->Participants->Diseases->find('list', ['limit' => 200]); ``` |