Changes between Initial Version and Version 1 of Ticket #14239, comment 11
- Timestamp:
- May 8, 2016, 8:12:34 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14239, comment 11
initial v1 1 1 I just encountered this issue as well. I'm researching CKEditor for the CMS we use for articles (news bulletins, reviews and more). 2 2 3 We have some special on-the-fly elements that are only included via php-code upon display of the article. For instance a video-player or information about the lowest price for a certain product. Some of those can even change fairly often, like the that 'lowest price of product X' .3 We have some special on-the-fly elements that are only included via php-code upon display of the article. For instance a video-player or information about the lowest price for a certain product. Some of those can even change fairly often, like the that 'lowest price of product X' (even multiple times a day). 4 4 5 Besides, we have been doing this site for almost 18 years... So we know things change, the video-player has seen many versions (from flash-embed to iframe+video-tag). So I really don't want the specific html for a video player or the 'lowest price' (which can change multiple times a day)hard coded in the article.5 Besides, we have been doing this site for almost 18 years... So we know things change, the video-player has seen many versions (from flash-embed to iframe+video-tag). So I really don't want the specific html for a video player or the 'lowest price' hard coded in the article. 6 6 7 7 But I do want to provide the editors with a means to include those and that should be with a useful preview of those specific elements. When researching this, I encountered this tutorial about [http://www.html5rocks.com/en/tutorials/webcomponents/customelements/ custom elements in html5].