View source
<?php
define('AUTOSAVE_PATH', drupal_get_path('module', 'autosave'));
function autosave_help($path, $arg) {
$output = '';
switch ($path) {
case 'admin/help#autosave':
$output = '<p>' . t('The autosave module automatically saves a form after a period of time.') . '</p>';
break;
}
return $output;
}
function autosave_menu() {
$items['admin/autosave'] = array(
'title' => 'Autosave save',
'page callback' => 'autosave_save',
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
$items['admin/settings/autosave'] = array(
'title' => 'Autosave',
'description' => 'Configure autosave settings.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'autosave_admin_settings',
),
'access arguments' => array(
'administer nodes',
),
);
return $items;
}
function autosave_form_node_type_form_alter(&$form, $form_state) {
$form['workflow']['autosave'] = array(
'#type' => 'checkbox',
'#title' => t('Enable Autosave to add/edit forms for this node type'),
'#default_value' => variable_get('autosave_' . $form['#node_type']->type, 0),
'#description' => t('Check this box to enable Autosave for this node type.'),
);
}
function autosave_form_alter(&$form, &$form_state, $form_id) {
if (end(explode('/', $_GET['q'])) == 'configure-autosave') {
drupal_add_js('var configure_autosave = true;', 'inline');
drupal_add_js(AUTOSAVE_PATH . '/autosave.js');
drupal_add_js(AUTOSAVE_PATH . '/jquery.field.js');
drupal_add_css(AUTOSAVE_PATH . '/autosave.css');
}
if (isset($form['type']['#value']) && $form_id == $form['type']['#value'] . '_node_form') {
if (variable_get('autosave_' . $form['type']['#value'], 0) == 1 && (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == 'edit' || arg(0) == 'node' && arg(1) == 'add')) {
global $user;
$path = $_GET['q'];
drupal_add_js(AUTOSAVE_PATH . '/autosave.js');
drupal_add_js(AUTOSAVE_PATH . '/jquery.field.js');
drupal_add_css(AUTOSAVE_PATH . '/autosave.css');
if ($form['type']['#value'] . '_node_form' == $form_id) {
$settings['form_id'] = 'node_form';
}
else {
$settings['form_id'] = $form_id;
}
$settings['period'] = variable_get('autosave_period', 10);
$settings['autosave_url'] = url('admin/autosave');
$settings['q'] = $path;
if ($autosaved_form = autosave_get_autosaved_form($form_id, $path, $user->uid)) {
$autosaved_form_id = $form['type']['#value'] . '_node_form' == $form_id ? 'node_form' : $form_id;
$settings['autosaved_form'][] = array(
'form_id' => $autosaved_form_id,
'serialized' => unserialize($autosaved_form['serialized']),
'saved_date' => format_date($autosaved_form['timestamp'], 'medium'),
);
}
drupal_add_js($settings, 'setting');
}
}
}
function autosave_admin_settings() {
if (!file_exists(AUTOSAVE_PATH . '/jquery.field.js')) {
drupal_set_message(t('Unable to find the jQuery Field Plugin in !path. Please <a href="http://plugins.jquery.com/files/jquery.field.js_4.txt">download jquery.field.js</a> and place it into !path.', array(
'!path' => $path,
)), 'error');
}
$form['autosave_period'] = array(
'#type' => 'textfield',
'#title' => t('Autosave after this amount seconds has passed'),
'#default_value' => variable_get('autosave_period', 10),
);
return system_settings_form($form);
}
function autosave_save() {
global $user;
$path = $_POST['q'];
$form_id = $_POST['form_id'];
unset($_POST['q']);
$serialized = serialize($_POST);
$path_args = explode("/", $path);
if (is_numeric($path_args[1])) {
$submitted = node_load($path_args[1]);
}
else {
$submitted->changed = db_result(db_query("SELECT created FROM {node} WHERE uid = %d and type = '%s' ORDER BY created DESC LIMIT 1", $user->uid, str_replace("-", "_", $path_args[2])));
}
if (!$submitted || time() - $submitted->changed > 10) {
db_query("DELETE FROM {autosaved_forms} WHERE form_id = '%s' AND path = '%s' AND uid = %d", $form_id, $path, $user->uid);
db_query("INSERT INTO {autosaved_forms} (form_id, path, uid, timestamp, serialized) VALUES ('%s', '%s', %d, %d, '%s')", $form_id, $path, $user->uid, time(), $serialized);
}
exit;
}
function autosave_get_autosaved_form($form_id, $path, $uid) {
$result = db_query("SELECT form_id, serialized, timestamp FROM {autosaved_forms} WHERE form_id = '%s' AND path = '%s' AND uid = %d", $form_id, $path, $uid);
while ($data = db_fetch_object($result)) {
$form['serialized'] = $data->serialized;
$form['timestamp'] = $data->timestamp;
}
return $form;
}
function autosave_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
if ($op == 'submit') {
db_query("DELETE FROM {autosaved_forms} WHERE form_id = '%s' AND path = '%s'", $node->form_id, $_GET['q']);
}
}