FINAL suepr merge step : added all modules to this super repos

This commit is contained in:
Bachir Soussi Chiadmi
2015-04-19 16:46:59 +02:00
7585 changed files with 1723356 additions and 18 deletions

View File

@@ -0,0 +1,15 @@
<?php
/**
* Implements hook_views_data_alter().
*/
function views_send_views_data_alter(&$data) {
$data['views']['views_send'] = array(
'title' => t('Send e-mail'),
'help' => t('Provide a checkbox to select the row for e-mail sending.'),
'field' => array(
'handler' => 'views_send_handler_field_selector',
'click sortable' => FALSE,
),
);
}

View File

@@ -0,0 +1,60 @@
<?php
/**
* @file
* Views field handler. Outputs a checkbox for selecting a row for email sending.
* Implements the Views Form API.
*/
class views_send_handler_field_selector extends views_handler_field {
/**
* If the view is using a table style, provide a
* placeholder for a "select all" checkbox.
*/
function label() {
if ($this->view->style_plugin instanceof views_plugin_style_table) {
return '<!--views-send-select-all-->';
}
else {
return parent::label();
}
}
function query() {
// Do nothing.
}
function render($values) {
return '<!--form-item-' . $this->options['id'] . '--' . $this->view->row_index . '-->';
}
/**
* The form which replaces the placeholder from render().
*/
function views_form(&$form, &$form_state) {
// The view is empty, abort.
if (empty($this->view->result)) {
return;
}
$form[$this->options['id']] = array(
'#tree' => TRUE,
);
foreach ($this->view->result as $row_index => $row) {
$form[$this->options['id']][$row_index] = array(
'#type' => 'checkbox',
'#default_value' => FALSE,
'#attributes' => array('class' => array('views-send-select')),
);
}
}
function views_form_validate($form, &$form_state) {
$field_name = $this->options['id'];
$selection = array_filter($form_state['values'][$field_name]);
if (empty($selection)) {
form_set_error($field_name, t('Please select at least one item.'));
}
}
}