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
return array( | |
/** | |
* global configuration | |
*/ | |
// set it to false to prevent the static session from auto-initializing, know that it might make your session | |
// expire sooner because it's not updated when it's not used. note that auto-initializing always loads the default driver | |
'auto_initialize' => true, | |
// if no session type is requested, use the default |
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
<h2>Description 1</h2> | |
<?php | |
Loader::element('editor_init'); | |
Loader::element('editor_config'); | |
Loader::element('editor_controls'); | |
?> | |
<div class="ccm-block-field-group" id="ccm-editor-pane"> | |
<textarea id="description" class="ccm-advanced-editor advancedEditor" name="description" rows="5" style="width: 95%;"><?php echo $description; ?></textarea> | |
</div> |
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
function OrganizationManagementCreateCtrl($route,$location) | |
{ | |
var self = this; | |
this.$route = $route; | |
this.test123 = 'XXX'; | |
this.formtemplate = 'partial_form.html'; | |
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
'use strict'; | |
angular.service('$FUEL', function($resource,$xhr){ | |
function Route(template, defaults) { | |
this.template = template = template + '#'; | |
this.defaults = defaults || {}; | |
var urlParams = this.urlParams = {}; | |
forEach(template.split(/\W/), function(param){ | |
if (param && template.match(new RegExp(":" + param + "\\W"))) { |
NewerOlder