View source
<?php
function sms_sendtophone_menu($may_cache) {
$items = array();
if ($may_cache) {
$items[] = array(
'path' => 'sms/sendtophone',
'title' => t('Send to phone'),
'callback' => 'sms_sendtophone_page',
'access' => user_access('access content'),
'type' => MENU_CALLBACK,
);
$items[] = array(
'path' => 'sms/sendtophone/thickbox',
'title' => t('Send to phone'),
'callback' => 'sms_sendtophone_thickbox',
'access' => user_access('access content'),
'type' => MENU_CALLBACK,
);
$items[] = array(
'path' => 'admin/smsframework/sendtophone',
'title' => t('Send to phone'),
'description' => t('Configure send to phone functinality.'),
'callback' => 'drupal_get_form',
'callback arguments' => array(
'sms_sendtophone_admin_overview',
),
'access' => user_access('administer smsframework'),
);
}
drupal_add_css(drupal_get_path('module', 'sms_sendtophone') . '/sms_sendtophone.css');
if (module_exists('thickbox')) {
drupal_add_js(drupal_get_path('module', 'sms_sendtophone') . '/sms_sendtophone.js');
}
return $items;
}
function sms_sendtophone_perm() {
return array(
'send to any number',
);
}
function sms_sendtophone_admin_overview() {
$entire_types = node_get_types();
$types = array();
foreach ($entire_types as $type) {
$types[$type->type] = $type->name;
}
$form['sms_sendtophone_content_types'] = array(
'#type' => 'checkboxes',
'#title' => t('Content types'),
'#default_value' => variable_get('sms_sendtophone_content_types', array()),
'#options' => $types,
'#description' => t('Which content types to show the Send To Phone feature.'),
);
return system_settings_form($form);
}
function sms_sendtophone_page($type = NULL) {
global $user;
$user = user_load(array(
'uid' => $user->uid,
));
if (user_access('send to any number') || !empty($user->sms_user['0']['number'])) {
$form = drupal_get_form('sms_sendtophone_form', $type);
}
else {
if (empty($user->sms_user['0']['number']) && user_access('send to any number')) {
$register = array(
'#value' => t('You need need to <a href="@setup">setup</a> your mobile phone to send messages.', array(
'@setup' => url('user/' . $user->uid . '/mobile'),
)),
);
}
else {
$register = array(
'#value' => t('You do not have permission to send messages. You may need to <a href="@signin">sign in</a> or <a href="@register">register</a> for an account to send messages to a mobile phone.', array(
'@signin' => url('user', 'destination=' . $_GET['destination']),
'@register' => url('user/register', 'destination=' . $_GET['destination']),
)),
);
}
$form = drupal_render($register);
}
if (isset($_GET['thickbox'])) {
print $form;
exit;
}
return $form;
}
function sms_sendtophone_filter($op, $delta = 0, $format = -1, $text = '') {
switch ($op) {
case 'list':
return array(
0 => t('Inline SMS'),
);
case 'no cache':
return $delta == 0;
case 'description':
switch ($delta) {
case 0:
return t('Highlights text between [sms] tags and appends a "send to phone" button.');
default:
return;
}
case 'process':
switch ($delta) {
case 0:
return _sms_sendtophone_filter_inline($text, $format);
default:
return $text;
}
case 'settings':
switch ($delta) {
case 0:
return _sms_sendtophone_filter_inline_settings($format);
default:
return;
}
default:
return $text;
}
}
function sms_sendtophone_filter_tips($delta, $format, $long = FALSE) {
switch ($delta) {
case 0:
return t('Text between [sms][/sms] tags will be highted and appended with a "send to phone" button.');
}
}
function _sms_sendtophone_filter_inline($text, $format) {
preg_match_all('/\\[sms\\](.*?)\\[\\/sms\\]/i', $text, $matches, PREG_SET_ORDER);
$display = 'text';
if (variable_get("sms_sendtophone_filter_inline_display_{$format}", 'icon') == 'icon') {
$display = 'icon';
}
foreach ($matches as $match) {
$text = str_replace($match[0], theme('sms_sendtophone_filter_inline_' . $display, $match[1], $format), $text);
}
return $text;
}
function theme_sms_sendtophone_filter_inline_text($text, $format) {
$link = l(t(variable_get("sms_sendtophone_filter_inline_display_text_{$format}", 'Send to phone')), 'sms/sendtophone/inline', array(
'title' => t('Send the highlighted text via SMS.'),
'class' => 'sms-sendtophone',
), 'text=' . urlencode($text) . '&' . drupal_get_destination());
return '<span class="sms-sendtophone-inline">' . $text . '</span> (' . $link . ')';
}
function theme_sms_sendtophone_filter_inline_icon($text, $format) {
if (variable_get("sms_sendtophone_filter_inline_default_icon_{$format}", 1)) {
$icon_path = drupal_get_path('module', 'sms_sendtophone') . '/sms-send.gif';
}
else {
$icon_path = variable_get("sms_sendtophone_filter_inline_custom_icon_path_{$format}", '');
}
$icon = theme('image', $icon_path, t(variable_get("sms_sendtophone_filter_inline_display_text_{$format}", 'Send to phone')), t('Send the highlighted text via SMS.'));
$link = l($icon, 'sms/sendtophone/inline', array(
'title' => t('Send the highlighted text via SMS.'),
'class' => 'sms-sendtophone',
), 'text=' . urlencode($text) . '&' . drupal_get_destination(), NULL, FALSE, TRUE);
return '<span class="sms-sendtophone-inline">' . $text . '</span> ' . $link;
}
function _sms_sendtophone_filter_inline_settings($format) {
$form['sms_sendtophone_filter_inline'] = array(
'#type' => 'fieldset',
'#title' => t('Inline SMS'),
'#collapsible' => TRUE,
);
$form['sms_sendtophone_filter_inline']["sms_sendtophone_filter_inline_display_{$format}"] = array(
'#type' => 'radios',
'#title' => t('Show link as'),
'#description' => t('How to display the the "send to phone" link.'),
'#options' => array(
'text' => t('Text'),
'icon' => t('Icon'),
),
'#default_value' => variable_get("sms_sendtophone_filter_inline_display_{$format}", 'icon'),
);
$form['sms_sendtophone_filter_inline']["sms_sendtophone_filter_inline_display_text_{$format}"] = array(
'#type' => 'textfield',
'#title' => t('Text for link'),
'#description' => t('If "Text" is selected above, the following text will be appended as a link.'),
'#size' => 32,
'#maxlength' => 32,
'#default_value' => variable_get("sms_sendtophone_filter_inline_display_text_{$format}", 'Send to phone'),
);
$form['sms_sendtophone_filter_inline']["sms_sendtophone_filter_inline_default_icon_{$format}"] = array(
'#type' => 'checkbox',
'#title' => t('Use default icon'),
'#description' => t('If "Icon" is selected above and this option is enabled, the default icon that came with the module will be used.'),
'#default_value' => variable_get("sms_sendtophone_filter_inline_default_icon_{$format}", 1),
);
$form['sms_sendtophone_filter_inline']["sms_sendtophone_filter_inline_custom_icon_path_{$format}"] = array(
'#type' => 'textfield',
'#title' => t('Path to custom icon'),
'#description' => t('Provide a path to a custom icon. This icon will be used if "Icon" is selected above and the "Use default icon" option is disabled.'),
'#size' => 40,
'#maxlength' => 255,
'#default_value' => variable_get("sms_sendtophone_filter_inline_custom_icon_path_{$format}", ''),
'#field_prefix' => url(NULL, NULL, NULL, TRUE),
);
return $form;
}
function sms_sendtophone_widget_info() {
return array(
'sms_sendtophone' => array(
'label' => t('Text Field and SMS send to phone'),
'field types' => array(
'text',
),
),
);
}
function sms_sendtophone_widget_settings($op, $widget) {
switch ($op) {
case 'form':
$form = array();
$form['rows'] = array(
'#type' => 'textfield',
'#title' => t('Rows'),
'#default_value' => $widget['rows'] ? $widget['rows'] : 1,
'#required' => TRUE,
);
return $form;
case 'validate':
if (!is_numeric($widget['rows']) || intval($widget['rows']) != $widget['rows'] || $widget['rows'] <= 0) {
form_set_error('rows', t('"Rows" must be a positive integer.'));
}
break;
case 'save':
return array(
'rows',
);
}
}
function sms_sendtophone_widget($op, &$node, $field, &$items, $delta = NULL) {
switch ($op) {
case 'form':
$form = array();
$form[$field['field_name']] = array(
'#tree' => TRUE,
);
if ($field['widget']['rows'] == 1) {
$form[$field['field_name']][0]['value'] = array(
'#type' => 'textfield',
'#title' => t($field['widget']['label']),
'#default_value' => isset($items[0]['value']) ? $items[0]['value'] : '',
'#required' => $field['required'],
'#description' => t($field['widget']['description']),
'#maxlength' => $field['max_length'] ? $field['max_length'] : NULL,
'#weight' => $field['widget']['weight'],
);
}
else {
$form[$field['field_name']][0]['value'] = array(
'#type' => 'textarea',
'#title' => t($field['widget']['label']),
'#default_value' => $items[0]['value'],
'#required' => $field['required'],
'#rows' => $field['widget']['rows'],
'#description' => t($field['widget']['description']),
'#weight' => $field['widget']['weight'],
);
}
return $form;
}
}
function sms_sendtophone_field_formatter_info() {
return array(
'sms_sendtophone' => array(
'label' => t('SMS Link'),
'field types' => array(
'text',
),
),
);
}
function sms_sendtophone_field_formatter($field, $item, $formatter, $node) {
switch ($formatter) {
case 'sms_sendtophone':
$text = check_plain(strip_tags($item['value']));
if ($text) {
return $text . theme('sms_sendtophone_field', $text);
}
}
}
function theme_sms_sendtophone_field($text) {
$link = l(t('Send to phone'), 'sms/sendtophone/field', array(
'title' => t('Send this text via SMS.'),
'class' => 'sms-sendtophone',
), 'text=' . urlencode($text) . '&' . drupal_get_destination());
return '<span class="sms-sendtophone-field">' . $text . '</span> (' . $link . ')';
}
function sms_sendtophone_form($type) {
global $user;
switch ($type) {
case 'cck':
case 'inline':
$form['message'] = array(
'#type' => 'value',
'#value' => $_GET['text'],
);
$form['message_preview'] = array(
'#type' => 'item',
'#value' => '<p class="message-preview">' . $_GET['text'] . '</p>',
'#title' => t('Message preview'),
);
break;
case 'node':
if (is_numeric(arg(3))) {
$node = node_load(arg(3));
$form['message'] = array(
'#type' => 'textarea',
'#title' => t('Message preview'),
'#description' => t('This URL will be sent to the phone.'),
'#cols' => 35,
'#rows' => 2,
'#attributes' => array(
'disabled' => true,
),
'#default_value' => url('node/' . $node->nid, NULL, NULL, TRUE),
);
}
break;
}
$form = array_merge(sms_send_form(), $form);
$form['number']['#default_value'] = $user->sms_user['0']['number'];
if (is_array($user->sms_user['0']['gateway'])) {
foreach ($user->sms_user['0']['gateway'] as $option => $value) {
$form['gateway'][$option]['#default_value'] = $value;
}
}
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Send'),
'#weight' => 20,
);
return $form;
}
function sms_sendtophone_form_validate($form_id, $form_values) {
if ($error = sms_validate_number($form_values['number'])) {
form_set_error('number', $error);
}
}
function sms_sendtophone_form_submit($form_id, $form_values) {
sms_send($form_values['number'], $form_values['message'], $form_values['gateway']);
}
function sms_sendtophone_link($type, $node = NULL, $teaser = FALSE) {
$links = array();
if ($type == 'node') {
$types = variable_get('sms_sendtophone_content_types', array());
if (in_array($node->type, $types)) {
if ($types[$node->type]) {
$links['sms_sendtophone'] = array(
'title' => t('Send to phone'),
'href' => "sms/sendtophone/node/{$node->nid}",
'attributes' => array(
'class' => 'sms-sendtophone',
'title' => 'Send a link via SMS.',
),
);
}
}
}
return $links;
}
function sms_sendtophone_form_alter($form_id, &$form) {
if ($form_id == sms_sendtophone_inline_form || $form_id == sms_sendtophone_node_form || $form_id == sms_sendtophone_cck_form) {
if (!user_access('send to any number')) {
$form['sms']['number']['#type'] = 'item';
$form['sms']['number']['#value'] = $form['sms']['number']['#default_value'];
}
}
}