HideDateTime.php in Field Formatter Condition 8
File
src/Plugin/Field/FieldFormatter/Condition/HideDateTime.php
View source
<?php
namespace Drupal\fico\Plugin\Field\FieldFormatter\Condition;
use Drupal\fico\Plugin\FieldFormatterConditionBase;
class HideDateTime extends FieldFormatterConditionBase {
public function alterForm(&$form, $settings) {
$default_orientation = isset($settings['settings']['orientation']) ? $settings['settings']['orientation'] : NULL;
$default_cutom_date = isset($settings['settings']['cutom_date']) ? $settings['settings']['cutom_date'] : NULL;
$form['orientation'] = [
'#title' => t('Hide if'),
'#type' => 'radios',
'#options' => array(
'smaller' => t("smaller than today's date"),
'greater' => t("greater than today's date"),
'custom_small' => t("smaller then custom date"),
'greater_small' => t("greater then custom date"),
),
'#default_value' => $default_orientation,
];
$form['cutom_date'] = [
'#title' => t('Cutom date'),
'#type' => 'date',
'#default_value' => $default_cutom_date,
];
}
public function access(&$build, $field, $settings) {
$custom_date = strtotime($settings['settings']['cutom_date']);
if (!empty($build[$field]['#items'])) {
foreach ($build[$field]['#items'] as $item) {
$info = $item
->getValue($field);
switch ($settings['settings']['orientation']) {
case 'smaller':
if (strtotime($info['value']) < REQUEST_TIME) {
$build[$field]['#access'] = FALSE;
}
break;
case 'greater':
if (strtotime($info['value']) > REQUEST_TIME) {
$build[$field]['#access'] = FALSE;
}
break;
case 'custom_small':
if (strtotime($info['value']) < $custom_date) {
$build[$field]['#access'] = FALSE;
}
break;
case 'greater_small':
if (strtotime($info['value']) > $custom_date) {
$build[$field]['#access'] = FALSE;
}
break;
default:
$build[$field]['#access'] = FALSE;
}
}
}
if (empty($build[$field]['#items'])) {
$build[$field]['#access'] = FALSE;
}
}
public function summary($settings) {
$orientations = array(
'smaller' => t("smaller than today's date"),
'greater' => t("greater than today's date"),
'custom_small' => t("smaller then custom date"),
'greater_small' => t("greater then custom date"),
);
if ($settings['settings']['orientation'] != 'smaller' && $settings['settings']['orientation'] != 'greater') {
$display_date = ' - ' . $settings['settings']['cutom_date'];
}
else {
$display_date = '';
}
return t('Condition: %condition (%orientation%date)', [
"%condition" => t('Hide date/time'),
'%orientation' => $orientations[$settings['settings']['orientation']],
'%date' => $display_date,
]);
}
}