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
export default class MatrixTable { | |
convert(table) { | |
const array = this.createArray(table); | |
const conversion = this.transpose(array); | |
return this.createTable(conversion).outerHTML; | |
} | |
transpose(ary) { |
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 | |
class ACMS_GET_Admin_User_Select extends ACMS_GET_Admin | |
{ | |
var $_scope = array( | |
'uid' => 'global', | |
); | |
function get() | |
{ | |
$Tpl = new Template($this->tpl, new ACMS_Corrector()); |
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 | |
/** | |
* ACMS_Http_File | |
* | |
* | |
*/ | |
class ACMS_Http_File extends ACMS_Http | |
{ | |
protected $name; |
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 Comment_Body --> | |
<!-- コメント表示 開始▼▼ --> | |
<!-- BEGIN position:veil --> | |
<!-- コメント件数 開始▼▼ --> | |
<p>全{amount}件中 {from}件〜{to}件を表示</p> | |
<!-- コメント件数 終了▲▲ --> | |
<!-- END position:veil --> | |
<!-- BEGIN relation:veil --> |
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 | |
class ACMS_POST_2GET extends ACMS_POST | |
{ | |
var $isCacheDelete = false; | |
function post() | |
{ | |
$Post = new Field($this->Post); | |
$Cookie =& Field::singleton('cookie'); |
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
<!-- /admin/entry/unit/exted.html --> | |
<!-- ここから --> | |
<!-- BEGIN custom_period --> | |
<table class="acms-admin-table-admin-edit"> | |
<tr> | |
<th>公開日時</th> | |
<td> | |
<input type="text" name="custom_period_start_datetime{id}" value="{custom_period_start_datetime}" class="acms-admin-form-width-full"/> | |
<input type="hidden" name="unit{id}[]" value="custom_period_start_datetime{id}" /> | |
</td> |
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 | |
class ACMS_Services_Amazon extends ACMS_Services | |
{ | |
private $accessKeyId = null; | |
private $secretAccessKey = null; | |
private $associateTag = null; | |
private $baseUrl = 'http://ecs.amazonaws.jp/onca/xml'; | |
private $apiVersion = '2013-08-01'; |
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
<script> | |
(function(w,d,s,g,js,fs){ | |
g=w.gapi||(w.gapi={});g.analytics={q:[],ready:function(f){this.q.push(f);}}; | |
js=d.createElement(s);fs=d.getElementsByTagName(s)[0]; | |
js.src='https://apis.google.com/js/platform.js'; | |
fs.parentNode.insertBefore(js,fs);js.onload=function(){g.load('analytics');}; | |
}(window,document,'script')); | |
</script> | |
<script> |
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 | |
/** | |
* php/ACMS/User/POST/FBDebugger.php | |
* | |
* テンプレート上では、標準のPOSTモジュールと同様に、 | |
* <input type="submit" name="ACMS_POST_FBDebugger" value="Clear FB Cache"> で呼び出されます。 | |
*/ | |
class ACMS_User_POST_FBDebugger extends ACMS_POST | |
{ | |
protected $endpoint = "https://graph.facebook.com/?scrape=true&id=%s"; |