# |
Oct 4th 2016, 07:34 |
spriz |
Any tips on how to write integration tests with the UseMuffin/Footprint behavior? :P |
# |
Oct 4th 2016, 07:34 |
NeoThermic|Work |
Hmm |
# |
Oct 4th 2016, 07:22 |
daniel_san |
does someone have any tips? |
# |
Oct 4th 2016, 07:21 |
daniel_san |
plugin works fine but translation not.. |
# |
Oct 4th 2016, 07:21 |
daniel_san |
locale files in plugins/MyPlugin/src/Locale/fr/my_plugin.po |
# |
Oct 4th 2016, 07:21 |
daniel_san |
loaded correctly in bootstrap.php and composer.json for autoload |
# |
Oct 4th 2016, 07:20 |
daniel_san |
cakephp 3, installed a plugin in plugins/MyPlugin |
# |
Oct 4th 2016, 07:20 |
daniel_san |
I can't get plugin translation working.. |
# |
Oct 4th 2016, 07:16 |
NeoThermic|Work |
there's 18k worth of commits to update it with :P |
# |
Oct 4th 2016, 07:16 |
NeoThermic|Work |
oh my, I have a checked out version of the master repo from 1.3.x |
# |
Oct 4th 2016, 07:15 |
cakephp261 |
how r u? |
# |
Oct 4th 2016, 07:15 |
cakephp261 |
hii |
# |
Oct 4th 2016, 07:15 |
cakephp261 |
hello |
# |
Oct 4th 2016, 07:07 |
spriz |
Oh :slightly_smiling_face: |
# |
Oct 4th 2016, 07:06 |
ndm |
no problem... also https://github.com/cakephp/cakephp/pull/9420 :slightly_smiling_face: |
# |
Oct 4th 2016, 07:06 |
spriz |
Thanks @ndm :slightly_smiling_face: |
# |
Oct 4th 2016, 07:05 |
spriz |
Ah! Then I donâ??t want to start looking more into it and just accept it :slightly_smiling_face: |
# |
Oct 4th 2016, 07:05 |
ndm |
Because aliases in update queries are differently implemented in the various dialects (and SQLite doesn't support it at all IIRC), and nobody yet had the guts trying to implement support for this |
# |
Oct 4th 2016, 07:04 |
spriz |
yeah but since itâ??s basically just an â??updateAllâ? to the table - I donâ??t understand *why* it doesntâ?? work with aliases |
# |
Oct 4th 2016, 07:03 |
spriz |
(I like the readability of having aliases :P) |
# |
Oct 4th 2016, 07:03 |
ndm |
@spriz The underlying update query is being built without aliases, that's the CakePHP default |
# |
Oct 4th 2016, 06:57 |
spriz |
eg. `[â??Subscriptions.company_idâ?? => $id]` fails while `[â??company_id' => $id]` doesn't |
# |
Oct 4th 2016, 06:56 |
spriz |
anyone using UseMuffin/Trash that can tell my why I canâ??t use aliased field in the conditions to `trashAll()` |
# |
Oct 4th 2016, 06:23 |
admad |
ionas: seems github couldn't handle anymore of your PRs :) |
# |
Oct 4th 2016, 06:16 |
ra7bi |
and check the count before generate PDF |
# |
Oct 4th 2016, 06:16 |
ra7bi |
i will use Find , |
# |
Oct 4th 2016, 06:15 |
ra7bi |
Yes it's in a Controller |
# |
Oct 4th 2016, 06:14 |
ndm |
otherwise use `find()` instead |
# |
Oct 4th 2016, 06:14 |
ndm |
well, if this is in a controller action which's only purpose is to generate the PDF file, then just letting the exception bubble up may be reasonable |
# |
Oct 4th 2016, 06:12 |
ra7bi |
the pdf file shouldn't be generated |
# |
Oct 4th 2016, 06:12 |
ra7bi |
so if there is no data |
# |
Oct 4th 2016, 06:12 |
ra7bi |
This query is for generating PDF file |
# |
Oct 4th 2016, 06:12 |
ndm |
depends on what for you need that info |
# |
Oct 4th 2016, 06:11 |
ra7bi |
so what is the best way to check if the query returning row or it's empty , |
# |
Oct 4th 2016, 06:11 |
ksandeep_ |
Hi, how i can set layout for admin from AppController. $this->viewBuilder()->layout('admin'); is not working for me in initialize method. |
# |
Oct 4th 2016, 06:10 |
ndm |
I probably shouldn't have said "_nothing_", as in that case it will throw an exception |
# |
Oct 4th 2016, 06:09 |
ra7bi |
Okay so it's okay to check like this if($participant) { |
# |
Oct 4th 2016, 06:09 |
ndm |
`get()` will either return 1 record, or nothing, that's why... |
# |
Oct 4th 2016, 06:09 |
ra7bi |
this code giving me Error ``` Error: Call to undefined method App\Model\Entity\Participant::count() ``` |
# |
Oct 4th 2016, 06:08 |
slackebot1 |
$totalResult = $participant->count(); ``` |
# |
Oct 4th 2016, 06:08 |
ra7bi |
``` // Check if the person is okay . $participants = TableRegistry::get('Participants'); $participant = $participants->get($this->request->data(['participant_id']),[ 'contain' => ['Distributors', 'Events','Payments'], 'conditions' => [ 'Events.start_date >= NOW()', //'distributors.id'=>$this->Auth->user('distributor_id') ] |