initial commit of starter install drupal 7
This commit is contained in:
@@ -0,0 +1,162 @@
|
||||
/**
|
||||
* @file
|
||||
* Linkit dialog functions.
|
||||
*/
|
||||
|
||||
(function ($) {
|
||||
|
||||
// Create the Linkit namespaces.
|
||||
Drupal.linkit = Drupal.linkit || {};
|
||||
Drupal.linkit.currentInstance = Drupal.linkit.currentInstance || {};
|
||||
Drupal.linkit.dialogHelper = Drupal.linkit.dialogHelper || {};
|
||||
Drupal.linkit.insertPlugins = Drupal.linkit.insertPlugins || {};
|
||||
|
||||
/**
|
||||
* Create the modal dialog.
|
||||
*/
|
||||
Drupal.linkit.createModal = function() {
|
||||
// Create the modal dialog element.
|
||||
Drupal.linkit.createModalElement()
|
||||
// Create jQuery UI Dialog.
|
||||
.dialog(Drupal.linkit.modalOptions())
|
||||
// Remove the title bar from the modal.
|
||||
.siblings(".ui-dialog-titlebar").hide();
|
||||
|
||||
// Make the modal seem "fixed".
|
||||
$(window).bind("scroll resize", function() {
|
||||
$('#linkit-modal').dialog('option', 'position', ['center', 50]);
|
||||
});
|
||||
|
||||
// Get modal content.
|
||||
Drupal.linkit.getDashboard();
|
||||
};
|
||||
|
||||
/**
|
||||
* Create and append the modal element.
|
||||
*/
|
||||
Drupal.linkit.createModalElement = function() {
|
||||
// Create a new div and give it an ID of linkit-modal.
|
||||
// This is the dashboard container.
|
||||
var linkitModal = $('<div id="linkit-modal"></div>');
|
||||
|
||||
// Create a modal div in the <body>.
|
||||
$('body').append(linkitModal);
|
||||
|
||||
return linkitModal;
|
||||
};
|
||||
|
||||
/**
|
||||
* Default jQuery dialog options used when creating the Linkit modal.
|
||||
*/
|
||||
Drupal.linkit.modalOptions = function() {
|
||||
return {
|
||||
dialogClass: 'linkit-wrapper',
|
||||
modal: true,
|
||||
draggable: false,
|
||||
resizable: false,
|
||||
width: 520,
|
||||
position: ['center', 50],
|
||||
minHeight: 0,
|
||||
zIndex: 210000,
|
||||
close: Drupal.linkit.modalClose,
|
||||
open: function (event, ui) {
|
||||
// Change the overlay style.
|
||||
$('.ui-widget-overlay').css({
|
||||
opacity: 0.5,
|
||||
filter: 'Alpha(Opacity=50)',
|
||||
backgroundColor: '#FFFFFF'
|
||||
});
|
||||
},
|
||||
title: 'Linkit'
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* Close the Linkit modal.
|
||||
*/
|
||||
Drupal.linkit.modalClose = function (e) {
|
||||
$('#linkit-modal').dialog('destroy').remove();
|
||||
// Make sure the current intstance settings are removed when the modal is
|
||||
// closed.
|
||||
Drupal.settings.linkit.currentInstance = {};
|
||||
|
||||
// The event object does not have a preventDefault member in
|
||||
// Internet Explorer prior to version 9.
|
||||
if (e && e.preventDefault) {
|
||||
e.preventDefault();
|
||||
}
|
||||
else {
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
Drupal.linkit.getDashboard = function () {
|
||||
// Create the AJAX object.
|
||||
var ajax_settings = {};
|
||||
ajax_settings.event = 'LinkitDashboard';
|
||||
ajax_settings.url = Drupal.settings.linkit.dashboardPath + Drupal.settings.linkit.currentInstance.profile;
|
||||
ajax_settings.progress = {
|
||||
type: 'throbber',
|
||||
message : Drupal.t('Loading Linkit dashboard...')
|
||||
};
|
||||
|
||||
Drupal.ajax['linkit-modal'] = new Drupal.ajax('linkit-modal', $('#linkit-modal')[0], ajax_settings);
|
||||
|
||||
// @TODO: Jquery 1.5 accept success setting to be an array of functions.
|
||||
// But we have to wait for jquery to get updated in Drupal core.
|
||||
// In the meantime we have to override it.
|
||||
Drupal.ajax['linkit-modal'].options.success = function (response, status) {
|
||||
if (typeof response == 'string') {
|
||||
response = $.parseJSON(response);
|
||||
}
|
||||
|
||||
// Call the ajax success method.
|
||||
Drupal.ajax['linkit-modal'].success(response, status);
|
||||
// Run the afterInit function.
|
||||
var helper = Drupal.settings.linkit.currentInstance.helper;
|
||||
Drupal.linkit.getDialogHelper(helper).afterInit();
|
||||
|
||||
// Set focus in the search field.
|
||||
$('#linkit-modal .linkit-search-element').focus();
|
||||
};
|
||||
|
||||
// Update the autocomplete url.
|
||||
Drupal.settings.linkit.currentInstance.autocompletePathParsed =
|
||||
Drupal.settings.linkit.autocompletePath.replace('___profile___', Drupal.settings.linkit.currentInstance.profile);
|
||||
|
||||
// Trigger the ajax event.
|
||||
$('#linkit-modal').trigger('LinkitDashboard');
|
||||
};
|
||||
|
||||
/**
|
||||
* Register new dialog helper.
|
||||
*/
|
||||
Drupal.linkit.registerDialogHelper = function(name, helper) {
|
||||
Drupal.linkit.dialogHelper[name] = helper;
|
||||
};
|
||||
|
||||
/**
|
||||
* Get a dialog helper.
|
||||
*/
|
||||
Drupal.linkit.getDialogHelper = function(name) {
|
||||
return Drupal.linkit.dialogHelper[name];
|
||||
};
|
||||
|
||||
/**
|
||||
* Register new insert plugins.
|
||||
*/
|
||||
Drupal.linkit.registerInsertPlugin = function(name, plugin) {
|
||||
Drupal.linkit.insertPlugins[name] = plugin;
|
||||
};
|
||||
|
||||
/**
|
||||
* Get an insert plugin.
|
||||
*/
|
||||
Drupal.linkit.getInsertPlugin = function(name) {
|
||||
return Drupal.linkit.insertPlugins[name];
|
||||
};
|
||||
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user