This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
prestashop-lib — © 2015 Chloé Tigre Rouge <[email protected]> | |
This is licensed under the same terms as Prestashop. | |
PrestaShop library to create products, categories and all sorts of things | |
programmatically by passing arrays around | |
It needs a bootstrapped PrestaShop framework (you can get one by defining | |
_PS_ROOT_DIR_ and by a | |
require_once(_PS_ROOT_DIR_.'config/config.inc.php'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// THIS FILE IS A CUSTOM CODEIGNITER CLASS FOR GENERATING DROPDOWNS INCLUDED FROM THE LIBRARIES FOLDER | |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
class Dob_dropdown{ | |
public function buildDayDropdown($name='',$id='',$value='') | |
{ | |
$days=''; |