Changeset 6421
- Timestamp:
- Apr 8, 2008, 5:39:57 PM (14 years ago)
- Location:
- OpenPNE/branches/work/ogawa/2059_profile/webapp/modules/admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/work/ogawa/2059_profile/webapp/modules/admin/do/csv_member.php
r5322 r6421 90 90 $c_profile_list = db_member_c_profile_list4null(); 91 91 foreach ($c_profile_list as $key => $tmp_profile) { 92 if (is_array($tmp_profile_list[$tmp_profile['name']]['value'])){ 93 foreach ($tmp_profile_list[$tmp_profile['name']]['value'] as $itm){ 94 $tmp_c_member[$tmp_profile['name']] .= $itm . " "; 92 if ($tmp_profile['use_member_profile']){ 93 if (is_array($tmp_profile_list[$tmp_profile['name']]['value'])){ 94 foreach ($tmp_profile_list[$tmp_profile['name']]['value'] as $itm){ 95 $tmp_c_member[$tmp_profile['name']] .= $itm . " "; 96 } 97 } else { 98 $tmp_c_member[$tmp_profile['name']] = $tmp_profile_list[$tmp_profile['name']]['value']; 95 99 } 96 } else {97 $tmp_c_member[$tmp_profile['name']] = $tmp_profile_list[$tmp_profile['name']]['value'];98 100 } 99 101 } … … 142 144 $ley_list[]="誕生日"; 143 145 foreach ($c_profile_list as $profile) { 144 if ($profile['name'] != 'PNE_POINT') { 145 $ley_list[]= $profile['caption']; 146 if ($profile['use_member_profile']){ 147 if ($profile['name'] != 'PNE_POINT') { 148 $ley_list[]= $profile['caption']; 149 } 146 150 } 147 151 } -
OpenPNE/branches/work/ogawa/2059_profile/webapp/modules/admin/templates/delete_c_member_confirm.tpl
r4417 r6421 48 48 </tr> 49 49 ({foreach from=$c_profile_list item=prof}) 50 ({if $prof.use_member_profile}) 50 51 <tr> 51 52 <th>({$prof.caption})</th> 52 53 <td>({if $prof.form_type == checkbox})({$c_member.profile[$prof.name].value|@t_implode:", "})({else})({$c_member.profile[$prof.name].value|t_truncate:60|nl2br})({/if})</td> 53 54 </tr> 55 ({/if}) 54 56 ({/foreach}) 55 57 <tr>
Note: See TracChangeset
for help on using the changeset viewer.