# |
Sep 3rd 2019, 13:44 |
ricksaccous |
if the plugin is built well you should be able to feed your custom class that extends the plugin class to the plugin |
# |
Sep 3rd 2019, 13:43 |
ricksaccous |
you can extend it and use your class instead |
# |
Sep 3rd 2019, 13:43 |
javier.villanueva |
i want change the behaviour of a function in it |
# |
Sep 3rd 2019, 13:43 |
ricksaccous |
@javier.villanueva are you sure you want to over-ride or just extend? |
# |
Sep 3rd 2019, 13:42 |
ricksaccous |
no |
# |
Sep 3rd 2019, 13:41 |
javier.villanueva |
for override classes in plugin..., I need copy all plugin and duplicate in /plugins? |
# |
Sep 3rd 2019, 13:33 |
conehead |
But don't worry...I will leave it off now. Screw xdebug |
# |
Sep 3rd 2019, 13:31 |
conehead |
@spriz Actually this appears when xdebug is enabled :S |
# |
Sep 3rd 2019, 13:30 |
neon1024 |
Stupid EntityTrait with it’s magic methods! :male_mage: |
# |
Sep 3rd 2019, 13:30 |
neon1024 |
`$entity->set('_new', true);` right? |
# |
Sep 3rd 2019, 13:05 |
admad |
@jeremy.halin have a default locale and show/redirect to that |
# |
Sep 3rd 2019, 12:44 |
conehead |
Just trying to find out |
# |
Sep 3rd 2019, 12:41 |
spriz |
could it be some cache whacking up? |
# |
Sep 3rd 2019, 12:41 |
spriz |
@conehead are those routes cached? |
# |
Sep 3rd 2019, 12:40 |
jeremy.halin |
Hi, what's the best practice to handle translations with fallback language ? For example if multiple translations are available, but not in the current locale (I18n) ? Thanks ! |
# |
Sep 3rd 2019, 12:36 |
conehead |
Okay...fk...now I get the same errors with the normal Fixture lol |
# |
Sep 3rd 2019, 12:35 |
conehead |
Maybe I will give it another shot next week. Just seems strange that changing the fixture screws up the routing somehow |
# |
Sep 3rd 2019, 12:33 |
spriz |
Aww, that sucks! You should throw in an issue at the repo so if anyone stumbles upon it they can see whats up :slightly_smiling_face: |
# |
Sep 3rd 2019, 12:32 |
conehead |
Just switched back and the tests are running just fine |
# |
Sep 3rd 2019, 12:31 |
conehead |
Well guess I cannot use Fixturize. Too many random errors I get :S |
# |
Sep 3rd 2019, 12:19 |
spriz |
Roger that @admad |
# |
Sep 3rd 2019, 12:19 |
admad |
@spriz it can work with older phpunit version too, just need an additional package |
# |
Sep 3rd 2019, 12:15 |
conehead |
This helps...but feels so wrong |
# |
Sep 3rd 2019, 12:11 |
spriz |
never checked what it does tbh |
# |
Sep 3rd 2019, 12:11 |
spriz |
I just see it popping up sometimes in the core tests |
# |
Sep 3rd 2019, 12:11 |
spriz |
https://github.com/cakephp/cakephp/search?q=Router%3A%3Areloadandunscoped_q=Router%3A%3Areload |
# |
Sep 3rd 2019, 12:11 |
conehead |
But only for 2 tests (where I cannot see any difference to the other tests) |
# |
Sep 3rd 2019, 12:10 |
conehead |
Not sure. Just strange it randomly appears |
# |
Sep 3rd 2019, 12:10 |
spriz |
do you need to run `Router::reload()` or something alike? |
# |
Sep 3rd 2019, 12:10 |
conehead |
`A route named "rest:elements:view" has already been connected to "/rest/v1/elements/*"." |
# |
Sep 3rd 2019, 12:09 |
spriz |
Aha :S Nope, but we also do not use named routes! :S |
# |
Sep 3rd 2019, 12:09 |
conehead |
@spriz maybe you have seen this problem with the ChecksumFixture? I randomly get `DuplicateNamedRouteException` when executing the tests |
# |
Sep 3rd 2019, 11:57 |
spriz |
Ah, that has been resolved in cake 4.x though :clap: |
# |
Sep 3rd 2019, 11:49 |
alexdd55976 |
yeah.. made that experience in a former project... also means that codecoverage can not always be 100% |
# |
Sep 3rd 2019, 11:45 |
spriz |
AFAIK cake only really works with 5.x and 6.x of PHPUnit? :thinking_face: |
# |
Sep 3rd 2019, 11:33 |
spriz |
@admad does pcov need phpunit 8.x? :thinking_face: Or am I misunderstanding |
# |
Sep 3rd 2019, 11:27 |
slackebot |
correttamente’)); return $this->redirect([‘controller’ => ‘groups’, ‘action’ => ‘index’]); } else { $this->conn->rollback(); $this->Flash->error(__(‘Si e\’ verificato un errore durante l\‘associazione delle capabilities. Riprovare di nuovo.’)); } |
# |
Sep 3rd 2019, 11:27 |
slackebot |
$this->Groups->get($groupId, [‘contain’ => [‘Capabilities’]]); $patchEntityVar = $this->Groups->patchEntity($group, $finalCapabilities); $this->log($this->Groups->Permissions->save($group), ‘debug’); if($this->Groups->save($group)){ \Cake\Cache\Cache::clearGroup(‘user_groups’, ‘user_groups’); $this->conn->commit(); $this->Flash->success(__(‘Capabilitie |
# |
Sep 3rd 2019, 11:27 |
peppejaripappalardo |
Hello guys, Just a little help: i have a table called groups, that have associations belongsToMany to Capabilities, that join permission table. When i do save of groups I need also to save capabilities. In groups I have: id, description. In permission I have: group_id and capability_id, when I do the patchEntity i need to save the new record in permission. This is the code into the controller: $group = |
# |
Sep 3rd 2019, 11:21 |
neon1024 |
I usually find I’ve accidentally preserved state somewhere |
# |
Sep 3rd 2019, 11:21 |
neon1024 |
Oh I hate those! |