Log message #4218745

# At Username Text
# Dec 14th 2019, 10:22 noel Ok found the answer. ```use Cake\Core\Configure; Configure::read('App.myConfigSetting')```
# Dec 14th 2019, 10:21 dsar You shouldn't access that variable in views since it defines internal stuff, what are you trying to achieve?
# Dec 14th 2019, 10:08 noel App.php defines some stuff like: ```'App' => [ 'namespace' => 'App',``` How can I access these in a view / template?
# Dec 14th 2019, 07:59 noel Problem solved. It seems one can't pass config to `crud` via the $components property, only if one sets up the component via `initialize` instead. Resolution shown in the issue linked above in case anyone cares :)
# Dec 14th 2019, 07:43 noel Ah.. ok. Thanks for clarifying.
# Dec 14th 2019, 07:43 admad that's because the initially the support for jsonapi was implemented within crud plugin itself (which i am a maintainer of) and it was later split into separate plugin
# Dec 14th 2019, 07:42 noel Oh.. but you're listed as a contributor on the github repo with 158 commits?
# Dec 14th 2019, 07:41 admad i have never used that plugin or been involved in it's maintenance so can't help you
# Dec 14th 2019, 07:32 noel @admad I added an issue: https://github.com/FriendsOfCake/crud-json-api/issues/103 Could you please give me some guidance? I'm not sure if it's a bug or just misuse on my part.
# Dec 14th 2019, 07:31 noel Ok nevermind. I was able to set the config on the route instead.
# Dec 14th 2019, 07:23 slackebot $this->Crud->config(['inflect' => false]); }``` but I'm getting an error: ```Call to a member function config() on bool```
# Dec 14th 2019, 07:23 noel I'm trying to set config for `crud-json-api` in my AppController: ```class AppController extends Controller { use \Crud\Controller\ControllerTrait; public $components = [ 'RequestHandler', 'Crud.Crud' => [ 'actions' => [ 'Crud.Index', ], 'listeners' => [ 'CrudJsonApi.JsonApi', 'CrudJsonApi.Pagination', ], ], ]; public function initialize() { parent::initialize();
# Dec 14th 2019, 07:13 noel Morning all. Who else is working on Saturday :)
# Dec 14th 2019, 00:03 challgren @damiano they can generate it via an app or you can send it via SMS its up to you
# Dec 13th 2019, 20:09 alexander.volle @daniel.upshaw Yeah, thanks, that works. Seems rather "hacky" though. Isn't the point of the option valueSources to select which source to get the field values from? Do you think this is a bug?
# Dec 13th 2019, 20:02 daniel.upshaw @alexander.volle, would it work to redirect the page to start it fresh that way?
# Dec 13th 2019, 19:54 slackebot ```$this->Form->create($entity, ['valueSources' => ['context']])``` when creating the form, but the previous entity value still shows up, as it fetches it from the request data. There is no request method to remove all data, so please, do you guys have a proposal so solve this?
# Dec 13th 2019, 19:54 alexander.volle I have a form that saves a new entity. After saving this new entity, I want the user to be able to add another new entity using the same form. After saving the first entity, I use ```$entity->newEmptyEntity() ``` to remove all previous values from the entity, before rendering the form again. Problem is that the form fetches field values from the request data, which has not been reset/removed. I tried using
# Dec 13th 2019, 19:28 daniel.upshaw https://github.com/cakephp/docs/pull/6323
# Dec 13th 2019, 19:23 daniel.upshaw Thank you much
# Dec 13th 2019, 19:23 daniel.upshaw I was searching for the wrong things in there
# Dec 13th 2019, 19:23 daniel.upshaw I did search the manual, in the wrong places apparently
# Dec 13th 2019, 19:23 daniel.upshaw @admad :,) Really sorry about that
# Dec 13th 2019, 18:50 admad @daniel.upshaw how about RTFMing? https://book.cakephp.org/3/en/views/cells.html#paginating-data-inside-a-cell
# Dec 13th 2019, 18:45 daniel.upshaw I don't really have the option of using the controller to set it up in this case
# Dec 13th 2019, 18:44 daniel.upshaw Lol
# Dec 13th 2019, 18:44 daniel.upshaw ```$paginatorHelper->options([ 'paging' => $paginator->getPagingParams() ]);```
# Dec 13th 2019, 18:44 daniel.upshaw And ```$paginatorHelper = new PaginatorHelper($this);```
# Dec 13th 2019, 18:44 daniel.upshaw Like hacking it into the View ```$paginator = new Paginator; $paginator->setConfig([ 'limit' => 10, ]);```
# Dec 13th 2019, 18:43 daniel.upshaw Trying a few different ways that aren't super clean just yet
# Dec 13th 2019, 18:43 daniel.upshaw Seems like there must be a way to use Pagination from a View Cell
# Dec 13th 2019, 18:06 damiano yes
# Dec 13th 2019, 17:57 admad an easier way would be to use db based based sessions. That would allow you to check if session already existing for user of particular id
# Dec 13th 2019, 17:56 damiano i think this solution should be good but...boring for customer that everytime need to check their email to login
# Dec 13th 2019, 17:50 damiano is that right?
# Dec 13th 2019, 17:50 damiano @challgren ok so i should create a system that generate a new token everytime, but i missed one thing...banks for example, send the code via SMS, so should i generate a new token and send it via email to allow that user...only
# Dec 13th 2019, 17:45 challgren @damiano https://en.wikipedia.org/wiki/One-time_password
# Dec 13th 2019, 17:45 challgren Yeah I saw that
# Dec 13th 2019, 17:44 admad @challgren laravel has started using semver with laravel 6. But they will do new major every 6 months
# Dec 13th 2019, 17:44 challgren the code changes every 30 seconds
# Dec 13th 2019, 17:44 challgren No the user setups an app that generates a code and then when they login it asks for that code