문서 : 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..