Window -> Preferences -> Php -> Code Style -> Code Templates -> Comments Type /** * ${cursor} * @package * @author 누구누구 * @since ${date} * @version 1.0 */ Fields /** * @var ${field_type} */ ${} 내용설명 data : Current date (현재 날짜) dollar : The dollar symbol (달러문양) enclosing_type :The type enclosing the method (선택된 메소드의 타입) file_name : Name of the enclosing compilation (선택된 편집파일 이름) package_name :..
문서 : http://docs.cksource.com/ /ckeditor/config.js 설정 config.language = 'ko'; // config.uiColor = '#AADC6E'; config.filebrowserBrowseUrl = '/media/editor/ckfinder/ckfinder.html'; config.filebrowserImageBrowseUrl = '/media/editor/ckfinder/ckfinder.html?Type=Images'; config.filebrowserFlashBrowseUrl = '/media/editor/ckfinder/ckfinder.html?Type=Flash'; config.filebrowserUploadUrl = '/media/editor/c..
// ... 'name' => Jelly::field('string', array( // Array for rules 'rules' => array(), )), 'name' => Jelly::field('string', array( 'rules' => array( // Add rule that only accepts the field value array('not_empty'), ), )), 'name' => Jelly::field('string', array( 'rules' => array( // Add rule that accepts parameters as well array('max_length', array(':value', 32)), ), )), // ... 'name' => Jelly::fi..
Jelly Module 사용하기 Jelly Class - meta - field - model - validation - event - collection - builder - behavior 기본 사용 방법 jelly Model 의 정의 class Model_Board_Old_Article extends Jelly_Model { public static function initialize(Jelly_Meta $meta) { $meta->table("ha_board")->fields(array( 'b_no' => Jelly::field('primary'), 'b_group_no' => Jelly::field('integer'), 'b_depth_no' => Jelly::field('integer', ar..