本文整理汇总了PHP中NNText::fixDateOffset方法的典型用法代码示例。如果您正苦于以下问题:PHP NNText::fixDateOffset方法的具体用法?PHP NNText::fixDateOffset怎么用?PHP NNText::fixDateOffset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NNText
的用法示例。
在下文中一共展示了NNText::fixDateOffset方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: save
/**
* Method to save the form data.
*
* @param array $data The form data.
*
* @return boolean True on success.
*
* @since 1.6
*/
public function save($data)
{
$advancedparams = JFactory::getApplication()->input->get('advancedparams', array(), 'array');
$dispatcher = JEventDispatcher::getInstance();
$input = JFactory::getApplication()->input;
$table = $this->getTable();
$pk = !empty($data['id']) ? $data['id'] : (int) $this->getState('module.id');
$isNew = true;
$context = $this->option . '.' . $this->name;
// Include the plugins for the save event.
JPluginHelper::importPlugin('extension');
// Load the row if saving an existing record.
if ($pk > 0) {
$table->load($pk);
$isNew = false;
}
// Alter the title and published state for Save as Copy
if ($input->get('task') == 'save2copy') {
$orig_table = clone $this->getTable();
$orig_table->load((int) $input->getInt('id'));
$data['published'] = 0;
if ($data['title'] == $orig_table->title) {
$data['title'] .= ' ' . JText::_('JGLOBAL_COPY');
}
}
require_once JPATH_PLUGINS . '/system/nnframework/helpers/text.php';
// correct the publish date details
if (isset($advancedparams['assignto_date_publish_up'])) {
NNText::fixDateOffset($advancedparams['assignto_date_publish_up']);
}
if (isset($advancedparams['assignto_date_publish_down'])) {
NNText::fixDateOffset($advancedparams['assignto_date_publish_down']);
}
if (isset($advancedparams['assignto_date'])) {
$publish_up = 0;
$publish_down = 0;
if ($advancedparams['assignto_date'] == 2) {
$publish_up = $advancedparams['assignto_date_publish_down'];
} else {
if ($advancedparams['assignto_date'] == 1) {
$publish_up = $advancedparams['assignto_date_publish_up'];
$publish_down = $advancedparams['assignto_date_publish_down'];
}
}
$data['publish_up'] = $publish_up;
$data['publish_down'] = $publish_down;
}
$lang = '*';
if (isset($advancedparams['assignto_languages']) && $advancedparams['assignto_languages'] == 1 && count($advancedparams['assignto_languages_selection']) === 1) {
$lang = (string) $advancedparams['assignto_languages_selection']['0'];
}
$data['language'] = $lang;
// Bind the data.
if (!$table->bind($data)) {
$this->setError($table->getError());
return false;
}
// Prepare the row for saving
$this->prepareTable($table);
// Check the data.
if (!$table->check()) {
$this->setError($table->getError());
return false;
}
// Trigger the before save event.
$result = $dispatcher->trigger($this->event_before_save, array($context, &$table, $isNew));
if (in_array(false, $result, true)) {
$this->setError($table->getError());
return false;
}
// Store the data.
if (!$table->store()) {
$this->setError($table->getError());
return false;
}
$table_adv = JTable::getInstance('AdvancedModules', 'AdvancedModulesTable');
$table_adv->moduleid = $table->id;
if ($table_adv->moduleid && !$table_adv->load($table_adv->moduleid)) {
$db = $table_adv->getDbo();
$db->insertObject($table_adv->getTableName(), $table_adv, $table_adv->getKeyName());
}
if (isset($data['rules'])) {
$table_adv->_title = $data['title'];
$table_adv->setRules($data['rules']);
}
if (!empty($advancedparams['mirror_module'])) {
$table_adv->mirror_id = $advancedparams['mirror_module'] == 2 ? $advancedparams['mirror_moduleid'] * -1 : $advancedparams['mirror_moduleid'];
unset($advancedparams['mirror_module']);
unset($advancedparams['mirror_moduleid']);
}
$table_adv->params = json_encode($advancedparams);
//.........这里部分代码省略.........