Skip to content

Instantly share code, notes, and snippets.

@ahomu
Created December 6, 2011 09:11
Show Gist options
  • Save ahomu/1437492 to your computer and use it in GitHub Desktop.
Save ahomu/1437492 to your computer and use it in GitHub Desktop.
[a-blog cms] すごく適当にJSONPを作成するモジュール草稿
<!-- BEGIN_MODULE Util_JSONP -->
<!--#include file="/partial/content.html" -->
<!-- END_MODULE Util_JSONP -->
<?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