markitup.inc in Wysiwyg 6
Same filename and directory in other branches
Editor integration functions for markItUp.
File
editors/markitup.incView source
<?php
/**
* @file
* Editor integration functions for markItUp.
*/
/**
* Plugin implementation of hook_editor().
*/
function wysiwyg_markitup_editor() {
$editor = array();
$editor['markitup'] = array(
'title' => 'markItUp',
'vendor url' => 'http://markitup.jaysalvat.com',
'download url' => 'http://markitup.jaysalvat.com/downloads',
'library path' => wysiwyg_get_path('markitup/markitup'),
'libraries' => array(
'' => array(
'title' => 'Source',
'files' => array(
'jquery.markitup.js',
),
),
'pack' => array(
'title' => 'Packed',
'files' => array(
'jquery.markitup.pack.js',
),
),
),
'version callback' => 'wysiwyg_markitup_version',
'settings callback' => 'wysiwyg_markitup_settings',
'themes callback' => 'wysiwyg_markitup_themes',
'plugin callback' => 'wysiwyg_markitup_plugins',
'versions' => array(
'1.1.5' => array(
'js files' => array(
'markitup.js',
),
),
),
'css files' => array(
'markitup-1.css',
),
);
return $editor;
}
/**
* Detect editor version.
*
* @param $editor
* An array containing editor properties as returned from hook_editor().
*
* @return
* The installed editor version.
*/
function wysiwyg_markitup_version($editor) {
$changelog = wysiwyg_get_path('markitup/markitup') . '/readme.txt';
$changelog = fopen($changelog, 'r');
$line = fgets($changelog);
if (preg_match('@([0-9\\.]+)@', $line, $version)) {
fclose($changelog);
return $version[1];
}
fclose($changelog);
}
/**
* Return runtime editor settings for a given wysiwyg profile.
*
* @param $editor
* A processed hook_editor() array of editor properties.
* @param $config
* An array containing wysiwyg editor profile settings.
* @param $theme
* The name of a theme/GUI/skin to use.
*
* @return
* A settings array to be populated in
* Drupal.settings.wysiwyg.configs.{editor}
*/
function wysiwyg_markitup_settings($editor, $config, $theme) {
// Whoever is guilty for adding this horrible CSS-file-without-filepath
// override "feature" to Drupal core... stand in the corner!
drupal_add_css($editor['library path'] . '/skins/' . $theme . '/style.css', 'theme');
$settings = array(
'root' => wysiwyg_get_path('markitup/markitup', TRUE) . '/',
'nameSpace' => $theme,
'markupSet' => array(),
);
// Add configured buttons or all available.
$default_buttons = array(
'bold' => array(
'name' => t('Bold'),
'className' => 'markitup-bold',
'key' => 'B',
'openWith' => '(!(<strong>|!|<b>)!)',
'closeWith' => '(!(</strong>|!|</b>)!)',
),
'italic' => array(
'name' => t('Italic'),
'className' => 'markitup-italic',
'key' => 'I',
'openWith' => '(!(<em>|!|<i>)!)',
'closeWith' => '(!(</em>|!|</i>)!)',
),
'stroke' => array(
'name' => t('Strike-through'),
'className' => 'markitup-stroke',
'key' => 'S',
'openWith' => '<del>',
'closeWith' => '</del>',
),
'image' => array(
'name' => t('Image'),
'className' => 'markitup-image',
'key' => 'P',
'replaceWith' => '<img src="[![Source:!:http://]!]" alt="[![Alternative text]!]" />',
),
'link' => array(
'name' => t('Link'),
'className' => 'markitup-link',
'key' => 'K',
'openWith' => '<a href="[![Link:!:http://]!]"(!( title="[![Title]!]")!)>',
'closeWith' => '</a>',
'placeHolder' => 'Your text to link...',
),
// @todo
// 'cleanup' => array('name' => t('Clean-up'), 'className' => 'markitup-cleanup', 'replaceWith' => 'function(markitup) { return markitup.selection.replace(/<(.*?)>/g, "") }'),
'preview' => array(
'name' => t('Preview'),
'className' => 'markitup-preview',
'call' => 'preview',
),
);
if (!empty($config['buttons'])) {
foreach ($config['buttons'] as $plugin) {
foreach ($plugin as $button => $enabled) {
if (isset($default_buttons[$button])) {
$settings['markupSet'][] = $default_buttons[$button];
}
}
}
}
else {
$settings['markupSet'] = $default_buttons;
}
return $settings;
}
/**
* Determine available editor themes or check/reset a given one.
*
* @param $editor
* A processed hook_editor() array of editor properties.
* @param $profile
* A wysiwyg editor profile.
*
* @return
* An array of theme names. The first returned name should be the default
* theme name.
*/
function wysiwyg_markitup_themes($editor, $profile) {
return array(
'simple',
'markitup',
);
}
/**
* Return internal plugins for this editor; semi-implementation of hook_wysiwyg_plugin().
*/
function wysiwyg_markitup_plugins($editor) {
return array(
'default' => array(
'buttons' => array(
'bold' => t('Bold'),
'italic' => t('Italic'),
'stroke' => t('Strike-through'),
'image' => t('Image'),
'link' => t('Link'),
// 'cleanup' => t('Clean-up'),
'preview' => t('Preview'),
),
'internal' => TRUE,
),
);
}
Functions
Name | Description |
---|---|
wysiwyg_markitup_editor | Plugin implementation of hook_editor(). |
wysiwyg_markitup_plugins | Return internal plugins for this editor; semi-implementation of hook_wysiwyg_plugin(). |
wysiwyg_markitup_settings | Return runtime editor settings for a given wysiwyg profile. |
wysiwyg_markitup_themes | Determine available editor themes or check/reset a given one. |
wysiwyg_markitup_version | Detect editor version. |