* @package MCMS\System\Component */ interface iComFormFetcher extends iComponent { /** * fetches fields * * @param mixed $input * an optional input array or object */ public function fetch($input = NULL); /** * fetches only fields given * * @param array $field2fetch * a list of fields to fetch * @param mixed $input * an optional input array or object */ public function fetchOnly(array $field2fetch, $input = NULL); }