Created
December 6, 2011 09:11
-
-
Save ahomu/1437492 to your computer and use it in GitHub Desktop.
[a-blog cms] すごく適当にJSONPを作成するモジュール草稿
This file contains hidden or 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
<!-- BEGIN_MODULE Util_JSONP --> | |
<!--#include file="/partial/content.html" --> | |
<!-- END_MODULE Util_JSONP --> |
This file contains hidden or 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 | |
require_once ACMS_LIB_DIR.'GET.php'; | |
class ACMS_GET_Util_JSONP extends ACMS_GET | |
{ | |
function get() | |
{ | |
return $this->Get->get('jsoncallback').'({html: '.json_encode($this->tpl).'});'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment