Changeset 11609
- Timestamp:
- May 11, 2009, 12:04:05 PM (13 years ago)
- Location:
- OpenPNE3/branches/nagasawa_word
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE3/branches/nagasawa_word/apps/pc_backend/templates/layout.php
r11200 r11609 21 21 <li><?php echo link_to(__('メンバー管理'), 'member/index'); ?></li> 22 22 <li><?php echo link_to(__('コミュニティ管理'), 'community/index'); ?></li> 23 <li><?php echo link_to(__('SNS内名称設定'), 'word/index'); ?></li> 23 24 <li><?php echo link_to(__('SNS設定'), 'sns/config'); ?></li> 24 25 <li><?php echo link_to(__('デザイン設定'), 'design/index'); ?></li> -
OpenPNE3/branches/nagasawa_word/config/ProjectConfiguration.class.php.sample
r11526 r11609 1 1 <?php 2 2 3 require_once ' ##SYMFONY_LIB_DIR##/autoload/sfCoreAutoload.class.php';3 require_once '/usr/share/php/symfony/autoload/sfCoreAutoload.class.php'; 4 4 sfCoreAutoload::register(); 5 5 -
OpenPNE3/branches/nagasawa_word/config/doctrine/schema.yml
r11531 r11609 203 203 uid: { type: string(32), default: "", notnull: true } 204 204 memo: { type: string } 205 206 WordType: 207 actAs: 208 I18n: 209 fields: [value] 210 length: 5 211 Timestampable: 212 columns: 213 id: { type: integer(4), primary: true, autoincrement: true } 214 name: { type: string, notnull: true } 215 value: { type: string, notnull: true } 216 217 WordConfig: 218 actAs: 219 I18n: 220 fields: [caption, description, value] 221 length: 5 222 Timestampable: 223 columns: 224 id: { type: integer(4), primary: true, autoincrement: true } 225 word_type_id: { type: integer(4) } 226 name: { type: string, notnull: true } 227 caption: { type: string, notnull: true } 228 description: { type: string, notnull: true } 229 value: { type: string, notnull: true } 230 relations: 231 WordType: { local: word_type_id, foreign: id }
Note: See TracChangeset
for help on using the changeset viewer.