field_name_map[$field]['type']; if($type == 'text') { echo strlen($bean->$field) > 50 ? substr($bean->$field, 0, 47) . '...' : $bean->field; } else if($type == 'link') { echo "{$bean->$field}"; } else { echo $bean->$field; } } /* vim: set expandtab: */ ?>