Skip to content

Instantly share code, notes, and snippets.

@lawebfabric
Last active December 1, 2018 16:00
Show Gist options
  • Save lawebfabric/087c8661db6138acc46ba8a372785844 to your computer and use it in GitHub Desktop.
Save lawebfabric/087c8661db6138acc46ba8a372785844 to your computer and use it in GitHub Desktop.
Show or Hide Content, Chunk or Whatever you want in MODX easily
<?php
//-----------------------------------------------------------
// getDate
//-----------------------------------------------------------
/*
* @author: Steeve from lawebfabric
* @website: http://www.lawebfabric.com
* @tutorial modx website: http://www.tutocms.fr/
* EXAMPLE USAGE
* [[!getDate:strtotime:date=`%y%m%d`:toPlaceholder=`now`]] date = YearMonthDay
* [[+now:gt=`181106`:and:lt=`251108`:then=`I'm printed`]]
*/
// $date = date('Y-m-d h:m:s');
// CHANGE date to strftime because it's faster with PHP7
$date = strftime('%Y-%m-%d %h:%l:%S');
return $date;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment