├── templates └── default │ └── entity │ ├── Video │ ├── icon.tpl.php │ └── edit.tpl.php │ └── Video.tpl.php ├── plugin.ini ├── ContentType.php ├── README.rst ├── Main.php ├── Pages └── Edit.php └── Video.php /templates/default/entity/Video/icon.tpl.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugin.ini: -------------------------------------------------------------------------------- 1 | [Plugin description] 2 | name = "Video" 3 | version = "0.0.2" 4 | author = "Christian Weiske" 5 | author_email = "cweiske@cweiske.de" 6 | author_url = "http://cweiske.de/" 7 | description = "HTML5 video plugin" 8 | -------------------------------------------------------------------------------- /ContentType.php: -------------------------------------------------------------------------------- 1 | `_ instance. 6 | Videos are embedded with a HTML5 ``