メモ
--
「MyThumbnail」は画像を指定したサイズにサムネイルすることが可能です。
MyThumbnail: http://www.kfsoft.info/MyThumbnail/
DOWNLOADでjquery.MyThumbnail.jsをダウンロードし、Webroot/jsに保存。
//MyThumbnailの読み込み
<script type="text/javascript" src="/js/jquery.MyThumbnail.js"></script>
<script>
$(document).ready(function(){
$(".thumbnails img").MyThumbnail({
thumbWidth:100, //サイズの指定
thumbHeight:100 //サイズの指定
});
});
</script>
<div class="thumbnails">
<?php $imagePath ="/images/contents/{$image['Image']['id']}/{$fileinfo['basename']}"; ?>
<?php e($html->image($imagePath));?>
</div>
MyThumbnailのLicenseについて
MIT license
メモ
<script type="text/javascript">
$(function () {
$("#testTree")
.jstree({
"plugins" : [ "themes", "html_data", "ui" ],
"themes" : {"theme" : "apple", "dots" : true, "icons" : true },
})
//選択された値を取得
.bind("select_node.jstree", function (event, data) {
var href = data.rslt.obj.children("a").attr("href");
$("#contents").load(href);
document.location.href = href;
})
});
</script>
historyオブジェクトのbackメソッドは、ブラウザで表示した履歴の一つ前のページへ戻ります。
#cancelは、id。
--
<script type="text/javascript">
$(function () {
$("#cancel").click(function(){
history.back();
});
});
</script>
<input class="btn" id="cancel" name="cancel" type="button" value=" キャンセル " />
PHP.iniファイルの「max_execution_time」の設定数値修正
300 => 1500
; Maximum execution time of each script, in seconds
; http://php.net/max-execution-time
; Note: This directive is hardcoded to 0 for the CLI SAPI
;max_execution_time = 300
max_execution_time = 1500
core.phpを修正
xampp\htdocs\プロジェクト名\app\config\core.php
ログ表示
Configure::write('debug', 2);
ログ非表示
Configure::write('debug', 0);