array( 'filter1', 'filter2', … ) ) or array( 'filter1', 'filter2', …) if $type * was specified */ public function getAutoloadFilters(Smarty_Internal_TemplateBase $obj, $type = null) { $smarty = $obj->_getSmartyObj(); if ($type !== null) { $this->_checkFilterType($type); return isset($smarty->autoload_filters[ $type ]) ? $smarty->autoload_filters[ $type ] : array(); } return $smarty->autoload_filters; } }