Add new comment to Drupal video: TinyMCE, IMCE, Lightbox. Obrázky v Drupalu podruhé
Moje kniha o CMS Drupal
Poslední komentáře
- 1 day 1 hour ago
- 3 days 11 hours ago
- 3 days 11 hours ago
- 3 days 11 hours ago
- 3 days 11 hours ago
- 3 days 12 hours ago
- 3 days 12 hours ago
- 3 days 13 hours ago
- 3 days 13 hours ago
- 3 days 14 hours ago
Nové diskuze
- (2 months 3 weeks zpět)
- (9 months 2 weeks zpět)
- (11 months zpět)
- (1 year 8 months zpět)
- (1 year 8 months zpět)
- (2 years zpět)
- (2 years zpět)
- (2 years 1 month zpět)

sites/all/modules/wysiwyg/editors/tinymce.inc. Najděte funkci function wysiwyg_tinymce_settings($editor, $config, $theme). Na začátku by mělo být toto:
$init = array(
'button_tile_map' => TRUE, // @todo Add a setting for this.
'document_base_url' => base_path(),
'entity_encoding' => 'raw',
'mode' => 'none',
'plugins' => array(),
'relative_urls' => FALSE,
'theme' => $theme,
'width' => '100%',
'height' => '700',
'keep_styles' => TRUE,
'inline_styles' => TRUE,
);