3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Implements hook_rules_action_info(). */ function tour_scheduling_rules_action_info() { $actions = array( 'tour_scheduling_action_disable_timeslot' => array( 'label' => t('Disable a Time Slot'), 'group' => t('Tour Scheduling'), 'parameter' => array( 'tourdate' => array( 'type' => 'date', 'label' => t('Tour Date'), 'save' => FALSE, ), ), ), 'tour_scheduling_action_enable_timeslot' => array( 'label' => t('Enable a Time Slot'), 'group' => t('Tour Scheduling'), 'parameter' => array( 'tourdate' => array( 'type' => 'date', 'label' => t('Tour Date'), 'save' => FALSE, ), ), ), ); return $actions; } /** * Action: Disable a Time Slot. */ function tour_scheduling_action_disable_timeslot($tourdate) { if (date('I', $tourdate) == 1) { $tourdate = date('Y-m-d H:i:s', $tourdate + 14400); } elseif (date('I', $tourdate) == 0) { $tourdate = date('Y-m-d H:i:s', $tourdate + 18000); } $slot = db_select('field_data_field_time_slot', 'ts') ->fields('ts', array('entity_id')) ->condition('field_time_slot_value', $tourdate, '=') ->execute(); $timeslot = $slot->fetchField(0); $node = node_load($timeslot); $node->status = 0; $node->changed = date(REQUEST_TIME); node_save($node); } /** * Action: Enable a Time Slot. */ function tour_scheduling_action_enable_timeslot($tourdate) { if (date('I', $tourdate) == 1) { $tourdate = date('Y-m-d H:i:s', $tourdate + 14400); } elseif (date('I', $tourdate) == 0) { $tourdate = date('Y-m-d H:i:s', $tourdate + 18000); } $slot = db_select('field_data_field_time_slot', 'ts') ->fields('ts', array('entity_id')) ->condition('field_time_slot_value', $tourdate, '=') ->execute(); $timeslot = $slot->fetchField(0); $node = node_load($timeslot); $node->status = 1; $node->changed = date(REQUEST_TIME); node_save($node); }
Output for git.master, git.master_jit, rfc.property-hooks

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
38.11 ms | 401 KiB | 8 Q