Skip to content

Instantly share code, notes, and snippets.

@reachkamrul
Created April 3, 2021 13:19
Show Gist options
  • Save reachkamrul/8703fa9c219892773b1d092cb527a4b6 to your computer and use it in GitHub Desktop.
Save reachkamrul/8703fa9c219892773b1d092cb527a4b6 to your computer and use it in GitHub Desktop.
add_filter('ninja_tables_item_attributes', function ($attributes) {
$values = json_decode($attributes['value'], true);
if(isset($values['created_at']) && !$values['created_at']) {
$values['created_at'] = date('Y-m-d h:i A', current_time('timestamp'));
$attributes['value'] = json_encode($values, JSON_UNESCAPED_UNICODE);
}
if(isset($values['updated_at'])) {
$values['updated_at'] = date('Y-m-d h:i A', current_time('timestamp'));
$attributes['value'] = json_encode($values, JSON_UNESCAPED_UNICODE);
}
return $attributes;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment