Added fade-in option for admin views, added pdf lib to custom folder for use in projects.

This commit is contained in:
2016-05-31 06:11:07 +01:00
parent d2aa1fce0b
commit 7f52decf16
574 changed files with 92240 additions and 895 deletions

View File

@ -976,6 +976,15 @@ class Get
$view->conditions[$nr]['match_name'] = ComponentbuilderHelper::safeString($name);
$view->conditions[$nr]['match_type'] = ComponentbuilderHelper::safeString($type);
$view->conditions[$nr]['match_xml'] = $fieldValue['settings']->xml;
// if custom field load field being extended
if (!ComponentbuilderHelper::typeField($type))
{
$view->conditions[$nr]['match_extends'] = ComponentbuilderHelper::getBetween($fieldValue['settings']->xml,'extends="','"');
}
else
{
$view->conditions[$nr]['match_extends'] = '';
}
break;
}
}