Rob Sanchez

Results 35 comments of Rob Sanchez

Are you using a particular field type to store that data? A custom one, perhaps?

I’m afraid there’s no support for Channel Images built in. Any custom field that stores its data in a separate database table needs to have an adapter written for it....

You should need to do anything extra to get channel files working, see the output format for channel files in the docs here: https://github.com/rsanchez/json#channel-files

No, you shouldn't need to. It should just automatically work. The fact that it's coming back to you as an array (albeit empty) and not a string makes me thing...

Afraid it's not that simple. You'd also need to write a join with the exp_channels table, which contains the channel_short_name.

I looked into adding required fields based on the Entry Type, but EE didn't have a way for me to hook into form validation, so it wasn't possible. I typically...

Yes, this only works with EE2. I should make this clear in the README. I have no plans to update this to work with EE3. There's a lot of work...

There's no specific integration with MSM, but I think it should be possible. You can check for site ID in your route callbacks: ``` $config['resource_router'] = array( 'blog/:url_title' => function...

Sounds like a bug to me. I have to re-factor some things to make this easier to test before I can address the underlying issue, though.

Here's what I suggest: ``` $config['resource_router'] = array( 'privacy' => function($router) { $router->setGlobal('page_url_title', 'privacy-policy'); $router->setTemplate('static/main'); }, ); ``` This will route `/privacy` to the `static/main` template, and set a `{page_url_title}`...