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 | |
/** | |
* KiribanComponent (Kiriban is round number) | |
* | |
* @author junichi11 | |
*/ | |
class KiribanComponent extends Object{ | |
public $_controller = null; | |
/** |
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 | |
/** | |
* CakePHP Component & Model Code Completion | |
* @author junichi11 | |
* | |
* /path/to/yourproject/nbproject/cake_component_code_completion.php | |
* | |
* ============================================== | |
* CakePHP Core Components | |
* ============================================== |
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 | |
/** | |
* CakePHP Helper Code Completion | |
* @author junichi11 | |
* | |
* install NetBeans 7.0 && cakephp-netbeans plugin | |
* http://netbeans.org | |
* https://github.com/evilbloodydemon/cakephp-netbeans/tree/autocomplete | |
* /path/to/yourproject/nbproject/cake_helper_code_completion.php | |
* |
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 | |
/** | |
* JqueryUiAutocomplete Component | |
* サーバー側にデータが要求されたときにDBからデータを取得 | |
* | |
* @author junichi11 | |
* | |
*/ | |
class JuAutocompleteComponent extends Object | |
{ |
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 | |
/** | |
* Cake PHP PreventWSubmitComponent | |
* 二重送信を防止する | |
* | |
* CakePHP version 1.3 | |
* @author junichi11 (https://github.com/junichi11) | |
* Usage | |
* Controller: | |
* public $components = array('PreventWSubmit'); |
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
// Japanese | |
// Pluploadの日本語化用のファイル | |
// /path/to/plupload/js/i18n/ja.js | |
// ファイルを設置してこのファイルを読み込めばOK | |
// 訳されていない文字列は、同様に追加すれば翻訳される。 | |
plupload.addI18n({ | |
'Select files' : 'ファイル選択', | |
'Add files to the upload queue and click the start button.' : 'ファイルを追加して、アップロード開始ボタンをクリックしてください', | |
'Filename' : 'ファイル名', | |
'Status' : '状態', |
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 YoutubeController extends AppController{ | |
public $name = 'Youtube'; | |
public $uses = array(); | |
public $layout = 'default'; | |
public $components = array('Zend','Auth'); | |
public function upload(){ | |
$this->Zend->loadClass('Zend_Gdata_ClientLogin'); |
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 | |
/** | |
* CakePHP Helper | |
* @author ${user} | |
*/ | |
class ${name}Helper extends AppHelper { | |
//=============================================== | |
// property | |
//=============================================== |
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 | |
/** | |
* CakePHP MeioUploadHelper | |
* Copyright (c) 2011 junichi11 | |
* @author junichi11 | |
* @license MIT | |
*/ | |
class MeioUploadHelper extends AppHelper { | |
//=============================================== | |
// property |
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 | |
/** | |
* CakePHP Plupload Plugin | |
* Meioupload Controller | |
* | |
* Copyright (c) 2011 junichi11 | |
* | |
* @author junichi11 | |
* @license MIT LICENCE | |
*/ |
OlderNewer