标签: php drupal drupal-modules input-filtering
我正在尝试编写一个输入过滤器,将以http开头并以.mp3结尾的所有内容转换为音频元素,因此:
http://google.com/file.mp3 - &gt; <audio src='http://google.com/file.mp3' />
http://google.com/file.mp3
<audio src='http://google.com/file.mp3' />
正则表达式对我来说没问题,只是不确定如何构建模块。
允许我添加许多其他规则的简单示例非常有用,谢谢。
我知道自定义过滤器模块,但它有相当多的开销。
答案 0 :(得分:6)
我认为您只需要在自定义模块中实现hook_filter()。该页面列出了详细的示例模块filter_example.module。