-
Notifications
You must be signed in to change notification settings - Fork 2
5.5 Add default filter Search
Taufik Firmansyah edited this page Jul 15, 2015
·
2 revisions
Search function is done by line code
function index()
{
// Start code index
$filter = (!is_null($this->input->get('search', true)) ? $this->buildSearch() : '');
// End code index
}
Example default search by Date Range
public funtion index()
{
// Start code index
$filter = (!is_null($this->input->get('search', true)) ? $this->buildSearch() : '');
// Start Search / filter data by range date
$filter .= " AND (fielddate BETWEEN '2014-10-01' AND '2014-11-01' ) "
// End code index
}
####Getting Started
- Installation
- Create Your First Module
- How to Edit Modules
- Module SQL
- Module Grid Table
- Module Form
- How to change template content element ( Frontend )
####Setting Application
- Manage Basic Info
- Manage Email Template
- Manage Social Login Security
- Manage Translation
- Manage Users and Groups
- Blast Emails
- Audit Trails / Log Activities
- Create New Page
- Working with PHP and MySQL on static page
- How to make multilanguage Page
- Display grid to frontend