1 | <?php include_page_title($op_config['sns_name']) ?> |
---|
2 | |
---|
3 | <?php |
---|
4 | $body = ''; |
---|
5 | if ($information) { |
---|
6 | $body = $sf_data->getRaw('information')->getValue(); |
---|
7 | } |
---|
8 | include_information_box('information', $body) |
---|
9 | ?> |
---|
10 | |
---|
11 | <table width="100%" bgcolor="#EEEEFF"> |
---|
12 | <tr><td colspan="2" align="center"> |
---|
13 | <hr color="#0D6DDF" size="3"> |
---|
14 | </td></tr> |
---|
15 | |
---|
16 | <tr><td align="center" width="50%" valign="top"> |
---|
17 | <?php echo image_tag_sf_image($sf_user->getMember()->getImageFileName(), array('size' => '120x120', 'format' => 'jpg')) ?> |
---|
18 | <br> |
---|
19 | <?php echo $sf_user->getMember()->getName() ?>さん<br> |
---|
20 | </td> |
---|
21 | |
---|
22 | <td valign="top"> |
---|
23 | <?php include_customizes('invite', 'before') ?> |
---|
24 | <?php include_component('default', 'navi', array('type' => 'mobile_home_side')) ?> |
---|
25 | <?php include_customizes('invite', 'after') ?> |
---|
26 | </td> |
---|
27 | </tr> |
---|
28 | |
---|
29 | <tr><td colspan="2" align="center"> |
---|
30 | <hr color="#0d6ddf" size="3"> |
---|
31 | </td></tr> |
---|
32 | |
---|
33 | <tr><td colspan="2"> |
---|
34 | <?php include_component('default', 'navi', array('type' => 'mobile_home')) ?> |
---|
35 | </td></tr> |
---|
36 | |
---|
37 | <tr><td colspan="2" align="center"> |
---|
38 | <?php echo link_to('プロフィール', 'member/profile') ?> |
---|
39 | <hr color="#0d6ddf" size="3"> |
---|
40 | </td></tr> |
---|
41 | |
---|
42 | </table> |
---|
43 | |
---|
44 | <br> |
---|
45 | |
---|
46 | <?php |
---|
47 | $list = array( |
---|
48 | link_to('プロフィール変更', 'member/editProfile'), |
---|
49 | ); |
---|
50 | include_list_box('profileEdit', $list, array('title' => 'プロフィール変更')) |
---|
51 | ?> |
---|
52 | |
---|
53 | <?php |
---|
54 | $list = array(); |
---|
55 | $attributes = sfConfig::get('openpne_member_category_attribute'); |
---|
56 | foreach (sfConfig::get('openpne_member_category') as $key => $value) |
---|
57 | { |
---|
58 | $title = $key; |
---|
59 | if (!empty($attributes[$key]['caption'])) |
---|
60 | { |
---|
61 | $title = $attributes[$key]['caption']; |
---|
62 | } |
---|
63 | |
---|
64 | if (count($value)) |
---|
65 | { |
---|
66 | $list[] = link_to($title, 'member/config?category='.$key); |
---|
67 | } |
---|
68 | } |
---|
69 | $list[] = link_to('かんたんログイン設定', 'member/configUID'); |
---|
70 | include_list_box('configEdit', $list, array('title' => '設定変更')) |
---|
71 | ?> |
---|
72 | |
---|
73 | <hr color="#0d6ddf"> |
---|
74 | |
---|
75 | ■<?php echo link_to('ログアウト', 'member/logout') ?><br> |
---|
76 | |
---|
77 | <?php slot('op_mobile_footer') ?> |
---|
78 | <table width="100%"> |
---|
79 | <tbody><tr><td align="center" bgcolor="#0d6ddf"> |
---|
80 | <font color="#eeeeee"><a href="<?php echo url_for('member/home') ?>" accesskey="0"><font color="#eeeeee">0.ホーム</font></a> / <a href="#top"><font color="#eeeeee">↑上へ</font></a> / <a href="#bottom" accesskey="8"><font color="#eeeeee">8.下へ</font></a></font><br> |
---|
81 | </td></tr></tbody></table> |
---|
82 | <?php end_slot(); ?> |
---|