CKeditor adv settings
CKeditor advanced settings for WYSIWYG
Is it possible to set CKeditor configurations without making a workaround ??
How am I supposed to use Media with WYSIWYG if I can't configure my CKeditor ??
If you keep asking yourself things like this, this is what you're looking for !
This module allows you to:
- Enable custom CKeditor styles (using ckeditor-styles.js)
- Enable custom CKeditor templates (using ckeditor-templates.js)
- Enable custom styles into CKeditor (using custom css file)
- Set CKeditor content body ID
- Set CKeditor advanced settings with a direct access to the config JS object.
views_totem
Integrate jQuery totem lugin with views.
views_easypaginate
Integrate jquery easypaginate plugin with Views.
Samenodeinblock
Provide a block to display same node in specific view mode in same page.
Useful when you want display some parts of current node in a block.
Views Term Language
Invite multiple friends at the same time with Custom module
Step 1.) Create Module file like: yourmodule.info
name = "yourmodule module"
description = "Send Emails for multiple friends module"
core = 7.x
files[] = yourmodule.module
Step 2) Create module file like: yourmodule.module
<?php
function yourmodule_menu() {
$items = array();
$items['sendemail'] = array(
'description' =>'Provide invite form',
'page callback' =>'drupal_get_form',
'page arguments' =>array('yourmodule_form'),
'access callback' => TRUE
);
return $items;
}
function yourmodule_form($form,&$form_submit) {
$form['title'] = array(
//'#title' => 'email',
'#type' => 'textfield',
//'#name' =>'text1',
'#attributes' =>array('placeholder' => t('Enter Your E-mail address')),
);
$form['title1'] = array(
//'#title' => 'email1',
'#type' => 'textfield',
// '#name' =>'text2',
'#attributes' =>array('placeholder' => t('Enter Your E-mail address')),
);
$form['title2'] = array(
'#type' => 'textfield',
// '#name' =>'text3',
'#attributes' =>array('placeholder' => t('Enter Your E-mail address')),
);
$form['title3'] = array(
'#type' => 'textfield',
//'#name' =>'text4',
'#attributes' =>array('placeholder' => t('Enter Your E-mail address')),
);
$form['submit'] = array(
'#type' => 'submit',
'#value' =>'send invites',
);
return $form;


