# |
Sep 3rd 2019, 08:24 |
spriz |
would you need anything else? |
# |
Sep 3rd 2019, 08:24 |
COOurb |
I see |
# |
Sep 3rd 2019, 08:23 |
spriz |
I see it only has `beforeMarshal`, `beforeSave` and `afterDelete` hooks in the `Behavior` :slightly_smiling_face: |
# |
Sep 3rd 2019, 08:22 |
COOurb |
So this plugin "start his actions" only when creating new/editing? |
# |
Sep 3rd 2019, 08:20 |
spriz |
with: ``` if ($entity->getOriginal('file') !== null andand is_array($entity->getOriginal('file'))) { //There is a new file! if (isset($entity->getOriginal('file')['name'])) { $entity->original_file_name = $entity->getOriginal('file')['name']; } ``` You can set the `original_file_name` if you want to be able to set that when users download the file anyway :slightly_smiling_face: |
# |
Sep 3rd 2019, 08:19 |
COOurb |
well, sure, I got it |
# |
Sep 3rd 2019, 08:19 |
spriz |
this will have that filename saved in `file` column :slightly_smiling_face: |
# |
Sep 3rd 2019, 08:18 |
COOurb |
ok thnx, think it's better then writing your own implementation of writer |
# |
Sep 3rd 2019, 08:18 |
spriz |
with ``` |
# |
Sep 3rd 2019, 08:17 |
spriz |
you got ze `nameCallback` |
# |
Sep 3rd 2019, 08:17 |
spriz |
@COOurb ``` 'file' => [ 'path' => 'uploads{DS}{model}{DS}{field}{DS}', 'nameCallback' => function (array $data, array $settings) { return Text::uuid(); }, 'filesystem' => [ 'adapter' => 'foo', ], ], ``` |
# |
Sep 3rd 2019, 08:15 |
neon1024 |
So probably implement your own Writer |
# |
Sep 3rd 2019, 08:15 |
neon1024 |
> Default: (string) ‘webroot{DS}files{DS}{model}{DS}{field}{DS}’ |
# |
Sep 3rd 2019, 08:15 |
neon1024 |
It does ship with a default Writer class though |
# |
Sep 3rd 2019, 08:14 |
neon1024 |
For my upload plugin I used a UUID |
# |
Sep 3rd 2019, 08:13 |
COOurb |
So I can store file name in different field while actually have random named file in file system |
# |
Sep 3rd 2019, 08:13 |
COOurb |
is there some {random} token? |
# |
Sep 3rd 2019, 08:12 |
COOurb |
I'm using 'cakephp-upload' plugin and I want to store files with same names. What should I do? {primaryKey} isn't available before saving entity |
# |
Sep 3rd 2019, 08:03 |
neon1024 |
Morning all :wave: |
# |
Sep 3rd 2019, 07:58 |
javier.villanueva |
conehead option is the correct |
# |
Sep 3rd 2019, 07:56 |
javier.villanueva |
never mind xD |
# |
Sep 3rd 2019, 07:56 |
javier.villanueva |
mmm |
# |
Sep 3rd 2019, 07:56 |
javier.villanueva |
if is first_name OR last_name is conehead option |
# |
Sep 3rd 2019, 07:56 |
javier.villanueva |
@johnwayne @conehead depends |
# |
Sep 3rd 2019, 07:44 |
conehead |
I think it should be ``` $query->where( [ 'OR' => [ 'Users.first_name' => $data[self::SEARCH_USER], 'Users.last_name' => $data[self::SEARCH_USER], ], ] ) ``` |
# |
Sep 3rd 2019, 07:41 |
johnwayne |
Is this valid or not ? ``` $query->where( [ 'Users.first_name' => $data[self::SEARCH_USER], 'OR' => [ 'Users.last_name' => $data[self::SEARCH_USER] ] ] ) ``` |
# |
Sep 3rd 2019, 07:40 |
johnwayne |
Hi, what is the new syntax for deprecated `->orWhere()` method in this case ``` $query->where( [ 'Users.first_name' => $data[self::SEARCH_USER], ] ) ->orWhere( [ 'Users.last_name' => $data[self::SEARCH_USER], ] ); ``` |
# |
Sep 3rd 2019, 07:24 |
conehead |
bancer you could convert it to array and then patch. Something like this: `$errors = $validator->errors($yourEntity->toArray());`. |
# |
Sep 3rd 2019, 07:22 |
javier.villanueva |
https://api.cakephp.org/3.0/class-Cake.ORM.Table.html#checkRules |
# |
Sep 3rd 2019, 07:20 |
javier.villanueva |
maybe checkRules() ? |
# |
Sep 3rd 2019, 07:18 |
conehead |
Little bit further away. Münster here ;) |
# |
Sep 3rd 2019, 07:18 |
alexdd55976 |
@conehead Darmstadt |
# |
Sep 3rd 2019, 07:17 |
conehead |
``` $validator = $this->YourTable->getValidator(); $errors = $validator->errors(['name' => 'K1']); $this->assertEmpty($errors); ``` |
# |
Sep 3rd 2019, 07:17 |
val |
@conehead entity |
# |
Sep 3rd 2019, 07:16 |
conehead |
@val You got the data as array or as entity? If you got it as data you could just create a new Entity and then call patchEntity |
# |
Sep 3rd 2019, 07:14 |
val |
Hi again, how to validate manually constructed entity without saving it in 3.x? `getErrors` is empty |
# |
Sep 3rd 2019, 07:13 |
jeremy.halin |
@spriz thanks for your answer and the gist, I will take a look and come back to you if any question :slightly_smiling_face: |
# |
Sep 3rd 2019, 07:08 |
javier.villanueva |
morning all! |
# |
Sep 3rd 2019, 07:06 |
conehead |
alex where are you from in germany? |
# |
Sep 3rd 2019, 06:56 |
alexdd55976 |
good morning fellows |
# |
Sep 3rd 2019, 06:29 |
Nitrogen |
essentially, date validation implementation here https://api.cakephp.org/3.8/source-class-Cake.Validation.Validation.html#554 acknowledges the fact that $dateFormat can potentially be an array and handles it accordingly, while datetime/time validation doesn't. |