Changeset 29 in ExiteCMS8
- Timestamp:
- 02/21/11 00:42:30 (15 months ago)
- Location:
- trunk
- Files:
-
- 7 edited
-
exitecms/config/exitecms.php (modified) (4 diffs)
-
exitecms/views/crud/add.php (modified) (1 diff)
-
exitecms/views/crud/edit.php (modified) (1 diff)
-
modules/exitecms/classes/controller/datetime.php (modified) (1 diff)
-
modules/exitecms/views/datetime.php (modified) (1 diff)
-
modules/exitecms/views/settings.php (modified) (1 diff)
-
public/themes/exitecms/css/global.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/exitecms/config/exitecms.php
r26 r29 14 14 15 15 return array ( 16 'install' => 16 'install' => 17 17 array ( 18 18 'mail_hostname' => '', … … 29 29 'maint_text' => '', 30 30 ), 31 'security' => 31 'security' => 32 32 array ( 33 33 'account_registration' => '0', … … 45 45 'encryption_seed' => 'sup3rs3Cr3tk3y564', 46 46 ), 47 'locales' => 47 'locales' => 48 48 array ( 49 49 'language_default' => 'en', … … 52 52 'server_country' => 'us', 53 53 ), 54 'datetime' => 55 array ( 56 'shortdate' => '%d/%m/%Y', 57 'longdate' => '%B %d %Y', 58 'shorttime' => '%H:%M', 59 'longtime' => '%H:%M:%S', 60 'shortdatetime' => '%d/%m/%Y %H:%M', 61 'longdatetime' => '%B %d %Y %H:%M:%S', 62 ), 54 63 ); 55 64 -
trunk/exitecms/views/crud/add.php
r25 r29 75 75 <?php echo Asset::img('form_help.png', array('title' => $_line['help'], 'class' => 'tooltip')); ?> 76 76 <?php endif; ?> 77 78 <?php if ( ! empty($_line['extra']) ): ?> 79 <br /><span class="extra"><?php echo $_line['extra']; ?></span> 80 <?php endif; ?> 77 81 </td> 78 82 </tr> -
trunk/exitecms/views/crud/edit.php
r25 r29 75 75 <?php echo Asset::img('form_help.png', array('title' => $_line['help'], 'class' => 'tooltip')); ?> 76 76 <?php endif; ?> 77 78 <?php if ( ! empty($_line['extra']) ): ?> 79 <br /><span class="extra"><?php echo $_line['extra']; ?></span> 80 <?php endif; ?> 77 81 </td> 78 82 </tr> -
trunk/modules/exitecms/classes/controller/datetime.php
r28 r29 196 196 { 197 197 $record[$field]['value'] = \Config::get('exitecms.datetime.'.$field, $value['value']); 198 $record[$field]['extra'] = ' » ' .strftime($record[$field]['value']);198 $record[$field]['extra'] = strftime($record[$field]['value']); 199 199 } 200 200 -
trunk/modules/exitecms/views/datetime.php
r28 r29 73 73 74 74 <?php if ( ! empty($_line['help']) ): ?> 75 <?php echo Asset::img('form_help.png', array('title' => $_line['help'], 'class' => 'tooltip' , 'style' => 'float:right;')); ?>75 <?php echo Asset::img('form_help.png', array('title' => $_line['help'], 'class' => 'tooltip')); ?> 76 76 <?php endif; ?> 77 77 78 78 <?php if ( ! empty($_line['extra']) ): ?> 79 < span class="extra"><?php echo $_line['extra']; ?></span>79 <input type="text" name="<?php echo $_name; ?>_result" value="<?php echo $_line['extra']; ?>" class="extra" disabled="disabled" readonly="readonly" style="margin-left:10px;width:200px" /> 80 80 <?php endif; ?> 81 81 </td> -
trunk/modules/exitecms/views/settings.php
r25 r29 75 75 <?php echo Asset::img('form_help.png', array('title' => $_line['help'], 'class' => 'tooltip')); ?> 76 76 <?php endif; ?> 77 78 <?php if ( ! empty($_line['extra']) ): ?> 79 <br /><span class="extra"><?php echo $_line['extra']; ?></span> 80 <?php endif; ?> 77 81 </td> 78 82 </tr> -
trunk/public/themes/exitecms/css/global.css
r25 r29 167 167 cursor: pointer; 168 168 cursor: hand; 169 } 170 171 form input.extra { 172 color: #fff; 173 background-color: #444; 169 174 } 170 175
Note: See TracChangeset
for help on using the changeset viewer.
