If you are wanting to capture the data into a table, you can create your table and then wrap it with a FUEL model (extending base_module_model) and use the form_fields method. So for example, you could create a controller to view and process the for…
If you are using a controller for your contact page and not using Fuel_pages to render the page, then you will need to create another controller specific to the mobile version or create a route to that same file and then perhaps use the URI segment …
I'm having a tricky time trying to replicate the issue. Would you mind doing a little debugging in the code? If so, the pagination stuff is in the fuel/modules/fuel/controllers/module.php file around line 182 in the "items" method. The data is set u…
When was the 0.9.3 initially downloaded? There were a few minor bug fixes on that branch but most fixes have been on the 1.0 beta branch (which I'd encourage you to look at as well when you have time).
Is the page_title variable possibly getting overwritten somewhere else in your code (perhaps in a different variables file, controller, or view file). If you remove that from the global variables file, does anything show up?
You can have a table-less model. The assets model does this since it stores everything on the file system. There are a few method you'll need to implement, like the list items method,
With regards to the Data_table library, you can pass the follow…
It doesn't look like your syntax is correct. Your model should be located in the fuel/modules/guestbook/models/comments_model.php. Then in your controller you would do the following:
$this->load->module_model('guestbook', 'comments_model'); $r…
There are a few ways. For .93:
// using the fuel_page object assuming it's already loaded $CI->fuel_page->id; // using a model $CI =& get_instance(); $CI->load->model(FUEL_FOLDER, 'pages_model'); $page_data = $CI->fuel_page->f…
It is probably due to 'Y/d/m' not being recognized as a valid date string by the strtotime function. Valid formats can be found here:
http://us1.php.net/datetime.formats.date
Does something like this work?
{$domains= fuel_model('news',array(find='all' limit=1 where='star > 3'))}
Are you using 0.93 or 1.0? If 0.93, there have been a couple changes to the php_to_template_syntax function in the MY_string_helper for 1.0 …
It really depends on how much code can be shared across the different sites. For example, if their are custom modules built for one site and not the other, then you may want to point it to a completely different application folder in the index.php b…
I won't be much help unfortunately other then to point you to the CKEditor API documentation. Would love to know if you figure out a solution though.
http://docs.cksource.com/ckeditor_api/index.html
Or, you can append a value to FUEL's "fuel_javascript" config parameter to overwrite parts of the "myMarkItUpSettings" object:
$config['fuel_javascript'][] = 'my_custom_js';
You may need to do some tweaking of the markitup.set file:
fuel/modules/fuel/assets/js/editors/markitup/jquery.markitup.set.js
Below is a link to an example on their website:
http://markitup.jaysalvat.com/examples/markdown/
They should actually be class names. For example, say you want to add a class to the second level of a navigation structure. You can do something like the following for fuel_nav:
$css_classes = array(); $css_classes[0] = 'test'; // will apply class…
If you are using AJAX, you can use either a page generated by the "opt-in" controller method or by using a normal controller -> view. AJAX is just needing a URI resource it can resolve.
The fuel_var() function actually returns the variable plus the inline editing code and shouldn't be used for evaluating such as in an "if" statement. To do that, simply just use $page_title.