I literally just put html and am using jquery to collect the data and make ajax calls. It's an advanced module for editing a description on an employee. It's needs CKEditor.
Yes, I'm aware of the configuration file, that works fine for the pages but this is an advanced module using an html field textarea.. I don't even know if CKEditor is being loaded on my advanced module... How do I get it to work on a textarea field?
Nailed it.. Well, this is awesome for both of us. I need to make a blog or something and go all into tutorials about Fuel CMS and other development.. etc.. I have a lot of Fuel knowledge now.
Okay, I like the idea of the hook and is it possible to load data via the variables page?
That's too bad I can't use the base controller to do this... This should be implemented in the future so I won't have to do these hacks..
I would like to ma…
Think about the problem like this. I have a PHP cUrl script that grabs json data from a weather API. I need the temperature to show up on every single page.. How do I make that happen?
Yeah... but that still doesn't give me the direction I'm looking for.
BaseController->HomeController-> (WORKS)
->Golf Page (CMS Page / No Controller / Does not work)
How do I get the base controller to inject $vars data into a CMS page t…
Yes, that's exactly what I was able to get to work .. the problem is... it doesn't work on pages pulled out of the CMS.. So, my big question is.. how do I add data to all pages b/c this page is going to have a jQuery slider AND I'm using a temperatu…
Ultimately, in the future, I need to build a shopping cart module for Fuel CMS and It's absolutely important that I understand how to pass back information from the base controller. Like cart total... and that needs to be on every single page and it…
Okay so I tried adding a global variable and now the errors go away for the pages that aren't calling the base controller. However, it flat out doesn't work on the ones that do extend the base controller. This is a big issue to me because I like hav…
I'm currently working on an advanced gallery module that I will release open source in the next month or so. It will do everything you've requested but for now here are some answers:
#1
You may want to use a bridge table so that you will have 3 tab…
WOW! That worked!!!
What's the best way to reference URLs in ad advanced module???
I use this one the front end: <?php echo base_url(); ?>
What's something equivalent for the backend???
Well, I've also figured out that I can just do this:
$vars['actions'] = "html to display";
Now, the problem I'm having is I have a file in the advanced module's '_blocks' folder and I can't load the data into the array. (FUEL CMS 1.0)
$vars['actio…
I'm having the same problem. It looks like when the script outputs the start XML tag it drops an extra character in it.. ";"...
http://brookstowninn.jbwebservices.com/help_sitemap_xml.jpg
echo '<?xml version="1.0" encoding="UTF-8"?>';
becom…
Yes, I got it to work. For some reason I had to make the location in the controller to "homepage" then create layouts and variables called "homepage"... some how it clicked over and started working..
Hmmm.. that didn't work... the thing is.. it loads the body of the correct page.. but no matter what layout I set it on in the CMS it will not load the correct layout.. I can set it to none and it will still load the main layout.