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
    • NavigationMain
    • 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 integer $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:      * @return void
 37:      */
 38:     public function __construct($rawSettings, $id, array $contentTypes) {
 39:         // change attributes from the parent class and call the parent
 40:         // constructor
 41:         parent::__construct($rawSettings, $id, $contentTypes);
 42:         $this->_type = 'CMS_HTML';
 43:         $this->_prefix = 'html';
 44:     }
 45: 
 46:     /**
 47:      * Generates the code which should be shown if this content type is shown in
 48:      * the frontend.
 49:      *
 50:      * @return string escaped HTML code which sould be shown if content type is
 51:      *         shown in frontend
 52:      */
 53:     public function generateViewCode() {
 54:         return $this->_encodeForOutput($this->_rawSettings);
 55:     }
 56: 
 57:     /**
 58:      * Generates the code which should be shown if this content type is edited.
 59:      *
 60:      * @return string escaped HTML code which should be shown if content type is
 61:      *         edited
 62:      */
 63:     public function generateEditCode() {
 64:         $wysiwygDiv = new cHTMLDiv();
 65: 
 66:         // generate the div ID - format: TYPEWITHOUTCMS_TYPEID_ID
 67:         // important because it is used to save the content accordingly
 68:         $id = str_replace('CMS_', '', $this->_type) . '_';
 69:         $db = cRegistry::getDb();
 70:         $sql = 'SELECT `idtype` FROM `' . $this->_cfg['tab']['type'] . '` WHERE `type`=\'' . $this->_type . '\'';
 71:         $db->query($sql);
 72:         $db->nextRecord();
 73:         $id .= $db->f('idtype') . '_' . $this->_id;
 74:         $wysiwygDiv->setId($id);
 75: 
 76:         $wysiwygDiv->setEvent('Focus', "this.style.border='1px solid #bb5577';");
 77:         $wysiwygDiv->setEvent('Blur', "this.style.border='1px dashed #bfbfbf';");
 78:         $wysiwygDiv->appendStyleDefinitions(array(
 79:             'border' => '1px dashed #bfbfbf',
 80:             'direction' => langGetTextDirection($this->_lang),
 81:             'min-height' => '20px'
 82:         ));
 83:         $wysiwygDiv->updateAttribute('contentEditable', 'true');
 84:         if (strlen($this->_rawSettings) == 0) {
 85:             $wysiwygDiv->setContent('&nbsp;');
 86:         } else {
 87:             $wysiwygDiv->setContent($this->_rawSettings);
 88:         }
 89: 
 90: 
 91:         // construct edit button
 92:         $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);
 93:         $editAnchor = new cHTMLLink("javascript:setcontent('" . $this->_idArtLang . "','" . $editLink . "');");
 94:         $editButton = new cHTMLImage($this->_cfg['path']['contenido_fullhtml'] . $this->_cfg['path']['images'] . 'but_edithtml.gif');
 95:         $editButton->appendStyleDefinition('margin-right', '2px');
 96:         $editAnchor->setContent($editButton);
 97: 
 98:         // construct save button
 99:         $saveAnchor = new cHTMLLink();
100:         $saveAnchor->setLink("javascript:setcontent('" . $this->_idArtLang . "', '0')");
101:         $saveButton = new cHTMLImage($this->_cfg['path']['contenido_fullhtml'] . $this->_cfg['path']['images'] . 'but_ok.gif');
102:         $saveAnchor->setContent($saveButton);
103: 
104:         return $this->_encodeForOutput($wysiwygDiv->render() . $editAnchor->render() . $saveAnchor->render());
105:     }
106: 
107: }
CMS CONTENIDO 4.9.0 API documentation generated by ApiGen 2.8.0