Задача: на всех страницах убрать type="text/css.
Следующий скрипт подойдет если валидатор validator.w3.org показывает следующие предупреждения:
Сам плагин работает так:
switch ($modx->event->name) {
case 'OnWebPagePrerender':
if($modx->resource->get('content_type') == 1){
$arr1 = array('type="text/css"', 'type="text/javascript"',' />','/>');
$arr2 = array('','','>','>');
$output = &$modx->resource->_output;
$output = str_replace($arr1,$arr2,$output);
$output = str_replace(' type="text/javascript"',"",$output);
}
break;
}