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
#----------------------------------------------------------------------------- | |
# Copyright (c) 2006-2009 Gerard Flanagan | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files (the "Software"), | |
# to deal in the Software without restriction, including without limitation | |
# the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
# and/or sell copies of the Software, and to permit persons to whom the | |
# Software is furnished to do so, subject to the following conditions: | |
# |
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
/** | |
* 指定日時によって内容を表示するショートコード | |
*/ | |
// [datecontent opendate="YmdH" closeDate="YmdH"] | |
function datecontent_func($atts, $content = null) { | |
$nowdate = date_i18n("YmdH"); // 現在の時間を取得 | |
extract(shortcode_atts(array( | |
'opendate' => null, | |
'closedate' => null, | |
), $atts)); |
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 | |
/* | |
****************************** | |
concrete5 ログインユーザーの属性を Mautic のトラッキングコードに引き渡すサンプル | |
****************************** | |
concrete5 テーマファイルに実装していただく想定です。 | |
concrete5 側のユーザー属性サンプル | |
メールアドレスは concrete5 のデフォルトのメールアドレスを取得する | |
last_name: 姓 | |
first_name: 名 |