Changeset 10555 for OpenPNE3/trunk/apps/pc_frontend
- Timestamp:
- Jan 29, 2009, 6:40:21 PM (14 years ago)
- Location:
- OpenPNE3/trunk/apps/pc_frontend
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE3/trunk/apps/pc_frontend/modules/community/templates/editSuccess.php
r10472 r10555 7 7 { 8 8 $options['title'] = __('Create a new community'); 9 $options['url'] = 'community/edit';9 $options['url'] = url_for('community/edit'); 10 10 } 11 11 else 12 12 { 13 13 $options['title'] = __('Edit the community'); 14 $options['url'] = 'community/edit?id='.$community->getId();14 $options['url'] = url_for('community/edit', $community->getId()); 15 15 } 16 16 -
OpenPNE3/trunk/apps/pc_frontend/modules/community/templates/searchSuccess.php
r10545 r10555 2 2 $options = array( 3 3 'title' => __('Search Communities'), 4 'url' => 'community/search',4 'url' => url_for('community/search'), 5 5 'button' => __('Search'), 6 6 'moreInfo' => array(link_to(__('Create a new community'), 'community/edit')) -
OpenPNE3/trunk/apps/pc_frontend/modules/member/templates/configCompleteSuccess.php
r10368 r10555 2 2 $options = array( 3 3 'title' => __('Change Settings'), 4 'url' => sprintf('member/configComplete?token=%s&id=%s&type=%s', $sf_params->get('token'), $sf_params->get('id'), $sf_params->get('type')),4 'url' => url_for(sprintf('member/configComplete?token=%s&id=%s&type=%s', $sf_params->get('token'), $sf_params->get('id'), $sf_params->get('type'))), 5 5 'button' => __('Send'), 6 6 ); -
OpenPNE3/trunk/apps/pc_frontend/modules/member/templates/configSuccess.php
r10455 r10555 19 19 20 20 <?php if ($categoryName): ?> 21 <?php op_include_form($categoryName.'Form', $form, array('title' => __($categoryCaptions[$categoryName]), 'url' => 'member/config?category='.$categoryName)) ?>21 <?php op_include_form($categoryName.'Form', $form, array('title' => __($categoryCaptions[$categoryName]), 'url' => url_for('member/config?category='.$categoryName))) ?> 22 22 <?php else: ?> 23 23 <?php op_include_box('configInformation', __('Please select the item that wants to be set from the menu.'), array('title' => __('Change Settings'))); ?> -
OpenPNE3/trunk/apps/pc_frontend/modules/member/templates/deleteInput.php
r10368 r10555 6 6 op_include_form('passwordForm', $form, array( 7 7 'title' => __('Delete your %1% account', array('%1%' => $op_config['sns_name'])), 8 'url' => 'member/delete',8 'url' => url_for('member/delete'), 9 9 )) 10 10 ?> -
OpenPNE3/trunk/apps/pc_frontend/modules/member/templates/editProfileSuccess.php
r10368 r10555 2 2 $options = array( 3 3 'title' => __('Edit Profile'), 4 'url' => 'member/editProfile',4 'url' => url_for('member/editProfile'), 5 5 ); 6 6 op_include_form('profileForm', array($memberForm, $profileForm), $options) -
OpenPNE3/trunk/apps/pc_frontend/modules/member/templates/inviteInput.php
r10368 r10555 2 2 $options = array( 3 3 'title' => __('Invite a friend to %1%', array('%1%' => $op_config['sns_name'])), 4 'url' => 'member/invite',4 'url' => url_for('member/invite'), 5 5 'button' => __('Send'), 6 6 ); -
OpenPNE3/trunk/apps/pc_frontend/modules/member/templates/searchSuccess.php
r10368 r10555 2 2 $options = array( 3 3 'title' => __('メンバー検索'), 4 'url' => 'member/search',4 'url' => url_for('member/search'), 5 5 'button' => __('Search'), 6 6 ); -
OpenPNE3/trunk/apps/pc_frontend/templates/_partsForm.php
r10369 r10555 5 5 ?> 6 6 7 <form action="<?php echo url_for($options['url']) ?>" method="post"<?php if (!empty($options['isMultipart'])): ?> enctype="multipart/form-data"<?php endif; ?>>7 <form action="<?php echo $options->getRaw('url') ?>" method="post"<?php if (!empty($options['isMultipart'])): ?> enctype="multipart/form-data"<?php endif; ?>> 8 8 <?php include_customizes($id, 'formTop') ?> 9 9
Note: See TracChangeset
for help on using the changeset viewer.