Overview

Packages

  • Core
    • Authentication
    • Backend
    • Cache
    • CEC
    • Chain
    • ContentType
    • Database
    • Datatype
    • Debug
    • Exception
    • Frontend
      • Search
      • URI
      • Util
    • GenericDB
      • Model
    • GUI
      • HTML
    • I18N
    • LayoutHandler
    • Log
    • Security
    • Session
    • Util
    • Validation
    • Versioning
    • XML
  • Module
    • ContentSitemapHtml
    • ContentSitemapXml
    • ContentUserForum
    • NavigationTop
  • mpAutoloaderClassMap
  • None
  • Plugin
    • ContentAllocation
    • CronjobOverview
    • FormAssistant
    • FrontendLogic
    • FrontendUsers
    • Linkchecker
    • ModRewrite
    • Newsletter
    • Repository
      • FrontendNavigation
      • KeywordDensity
    • SearchSolr
    • SmartyWrapper
    • UrlShortener
    • UserForum
    • Workflow
  • PluginManager
  • Setup
    • Form
    • GUI
    • Helper
      • Environment
      • Filesystem
      • MySQL
      • PHP
    • UpgradeJob

Classes

  • cCodeGeneratorAbstract
  • cCodeGeneratorFactory
  • cCodeGeneratorStandard
  • cContentTypeAbstract
  • cContentTypeAbstractTabbed
  • cContentTypeDate
  • cContentTypeFilelist
  • cContentTypeHead
  • cContentTypeHtml
  • cContentTypeHtmlhead
  • cContentTypeImg
  • cContentTypeImgdescr
  • cContentTypeImgeditor
  • cContentTypeLink
  • cContentTypeLinkdescr
  • cContentTypeLinkeditor
  • cContentTypeLinktarget
  • cContentTypeTeaser
  • cContentTypeText
  • cTypeGenerator
  • Overview
  • Package
  • Class
  • Tree
  • Deprecated
  • Todo
  1: <?php
  2: /**
  3:  * This file contains the cContentTypeHtml class.
  4:  *
  5:  * @package Core
  6:  * @subpackage ContentType
  7:  * @version SVN Revision $Rev:$
  8:  *
  9:  * @author Simon Sprankel
 10:  * @copyright four for business AG <www.4fb.de>
 11:  * @license http://www.contenido.org/license/LIZENZ.txt
 12:  * @link http://www.4fb.de
 13:  * @link http://www.contenido.org
 14:  */
 15: 
 16: defined('CON_FRAMEWORK') || die('Illegal call: Missing framework initialization - request aborted.');
 17: 
 18: /**
 19:  * Content type CMS_HTML which lets the editor enter HTML with the help of a
 20:  * WYSIWYG editor.
 21:  *
 22:  * @package Core
 23:  * @subpackage ContentType
 24:  */
 25: class cContentTypeHtml extends cContentTypeAbstract {
 26: 
 27:     /**
 28:      * Initialises class attributes and handles store events.
 29:      *
 30:      * @param string $rawSettings the raw settings in an XML structure or as
 31:      *        plaintext
 32:      * @param int $id ID of the content type, e.g. 3 if CMS_DATE[3] is
 33:      *        used
 34:      * @param array $contentTypes array containing the values of all content
 35:      *        types
 36:      */
 37:     public function __construct($rawSettings, $id, array $contentTypes) {
 38:         // change attributes from the parent class and call the parent
 39:         // constructor
 40:         parent::__construct($rawSettings, $id, $contentTypes);
 41:         $this->_type = 'CMS_HTML';
 42:         $this->_prefix = 'html';
 43:     }
 44: 
 45:     /**
 46:      * Generates the code which should be shown if this content type is shown in
 47:      * the frontend.
 48:      *
 49:      * @return string escaped HTML code which sould be shown if content type is
 50:      *         shown in frontend
 51:      */
 52:     public function generateViewCode() {
 53:         return $this->_encodeForOutput($this->_rawSettings);
 54:     }
 55: 
 56:     /**
 57:      * Generates the code which should be shown if this content type is edited.
 58:      *
 59:      * @return string escaped HTML code which should be shown if content type is
 60:      *         edited
 61:      */
 62:     public function generateEditCode() {
 63:         $wysiwygDiv = new cHTMLDiv();
 64: 
 65:         // generate the div ID - format: TYPEWITHOUTCMS_TYPEID_ID
 66:         // important because it is used to save the content accordingly
 67:         $id = str_replace('CMS_', '', $this->_type) . '_';
 68:         $db = cRegistry::getDb();
 69:         $sql = 'SELECT `idtype` FROM `' . $this->_cfg['tab']['type'] . '` WHERE `type`=\'' . $this->_type . '\'';
 70:         $db->query($sql);
 71:         $db->nextRecord();
 72:         $id .= $db->f('idtype') . '_' . $this->_id;
 73:         $wysiwygDiv->setId($id);
 74: 
 75:         $wysiwygDiv->setEvent('Focus', "this.style.border='1px solid #bb5577';");
 76:         $wysiwygDiv->setEvent('Blur', "this.style.border='1px dashed #bfbfbf';");
 77:         $wysiwygDiv->appendStyleDefinitions(array(
 78:             'border' => '1px dashed #bfbfbf',
 79:             'direction' => langGetTextDirection($this->_lang),
 80:             'min-height' => '20px'
 81:         ));
 82:         $wysiwygDiv->updateAttribute('contentEditable', 'true');
 83:         if (strlen($this->_rawSettings) == 0) {
 84:             $wysiwygDiv->setContent('&nbsp;');
 85:         } else {
 86:             $wysiwygDiv->setContent($this->_rawSettings);
 87:         }
 88: 
 89: 
 90:         // construct edit button
 91:         $editLink = $this->_session->url($this->_cfg['path']['contenido_fullhtml'] . 'external/backendedit/' . 'front_content.php?action=10&idcat=' . $this->_idCat . '&idart=' . $this->_idArt . '&idartlang=' . $this->_idArtLang . '&type=' . $this->_type . '&typenr=' . $this->_id. '&client=' . $this->_client);
 92:         $editAnchor = new cHTMLLink("javascript:Con.Tiny.setContent('" . $this->_idArtLang . "','" . $editLink . "');");
 93:         $editButton = new cHTMLImage($this->_cfg['path']['contenido_fullhtml'] . $this->_cfg['path']['images'] . 'but_edithtml.gif');
 94:         $editButton->appendStyleDefinition('margin-right', '2px');
 95:         $editAnchor->setContent($editButton);
 96: 
 97:         // construct save button
 98:         $saveAnchor = new cHTMLLink();
 99:         $saveAnchor->setLink("javascript:Con.Tiny.setContent('" . $this->_idArtLang . "', '0')");
100:         $saveButton = new cHTMLImage($this->_cfg['path']['contenido_fullhtml'] . $this->_cfg['path']['images'] . 'but_ok.gif');
101:         $saveAnchor->setContent($saveButton);
102: 
103:         return $this->_encodeForOutput($wysiwygDiv->render() . $editAnchor->render() . $saveAnchor->render());
104:     }
105: 
106: }
CMS CONTENIDO 4.9.3 API documentation generated by ApiGen 2.8.0