node_expire.ntype.inc in Node expire 6.2
Same filename and directory in other branches
Node type integration.
File
node_expire.ntype.incView source
<?php
/**
* @file
* Node type integration.
*/
/**
* Implementation of hook_form_alter().
*/
function _node_expire_form_node_type_form_alter_validate(&$form, &$form_state) {
$node_expire =& $form_state['values']['node_expire'];
if (!empty($node_expire) and !strtotime($node_expire)) {
form_set_error('node_expire', 'This values should be in PHP <a href="http://www.php.net/strtotime" target="_blank">strtotime format</a>.');
}
$node_expire_max =& $form_state['values']['node_expire_max'];
if (!empty($node_expire_max)) {
if (!strtotime($node_expire_max)) {
form_set_error('node_expire_max', 'This values should be in PHP <a href="http://www.php.net/strtotime" target="_blank">strtotime format</a>.');
}
elseif (strtotime($node_expire) > strtotime($node_expire_max)) {
form_set_error('node_expire_max', 'This value cannot be earlier then the default value.');
}
}
}
/**
* Implementation of hook_form_alter().
*/
function _node_expire_form_node_type_form_alter_submit(&$form, &$form_state) {
$ntypes = variable_get('node_expire_ntypes', array());
$ntypes[$form_state['values']['type']]['default'] = $form_state['values']['node_expire'];
$ntypes[$form_state['values']['type']]['max'] = $form_state['values']['node_expire_max'];
$ntypes[$form_state['values']['type']]['required'] = $form_state['values']['node_expire_required'];
variable_set('node_expire_ntypes', $ntypes);
}
Functions
Name | Description |
---|---|
_node_expire_form_node_type_form_alter_submit | Implementation of hook_form_alter(). |
_node_expire_form_node_type_form_alter_validate | Implementation of hook_form_alter(). |