Hello Admin
FYI
Strict standards: Declaration of XxxCkModelXxxxxxitem::prepareTable() should be compatible with JModelAdmin::prepareTable(&$table) in
...\components\com_xxx\models\xxxxxitem.php on line 37
protected function prepareTable($table)
{
.
.
.
}
should beprotected function prepareTable(&$table)
{
.
.
.
}
Regards
v
EDITED
ALSO:public function test(SimpleXMLElement $element, $value, $group = null, JRegistry $input = null, JForm $form = null)
{
.
.
.
}
Should be:public function test(&$element, $value, $group = null, &$input = null, &$form = null)
{
.
.
.
}
I believe this says that you are currently working on the builder. Good luck.