1) In koolform.php please init the constructor of _KoolFormElement to:
function __construct($_id=null)
it throws an error now.
2) If you load i.e. KoolForms and KoolGrid, you get a redefinition error atm:
Fatal error: Cannot redeclare _slash_encode() (previously declared in ...KoolControls/KoolGrid/koolgrid.php:82) in ...KoolControls/KoolForm/koolform.php on line 72
Function definition should look like:
if (!function_exists('_slash_encode'))
{ function _slash_encode($_val)
{
return addslashes($_val);
}
}
Thanks in advance!