Last active
December 1, 2018 16:00
-
-
Save lawebfabric/087c8661db6138acc46ba8a372785844 to your computer and use it in GitHub Desktop.
Show or Hide Content, Chunk or Whatever you want in MODX easily
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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