Pomoc - Szukaj - Użytkownicy - Kalendarz
Pełna wersja: [HTML] Osadzenie forum phpBB w contencie strony
Forum PHP.pl > Forum > Przedszkole
AddoN
Witam, mam mały problem z osadzeniem forum w stronie. Ponieważ nie chce tworzyć osobnego skinu dla forum postanowiłem wrzucić to do iframe.

  1. <!--<center>
  2. <iframe src="forum/index.php" width="940" height="2000"
  3. frameborder="0">
  4. ups... twoja przeglšdarka nie obsługuje ramek.
  5. </iframe>
  6. </center> -->
  7.  
  8. <?php
  9. /**
  10. *
  11. * @package phpBB3
  12. * @version $Id$
  13. * @copyright (c) 2005 phpBB Group
  14. * @license <a href="http://opensource.org/licenses/gpl-license.php" target="_blank">http://opensource.org/licenses/gpl-license.php</a> GNU Public License
  15. *
  16. */
  17.  
  18. /**
  19. */
  20.  
  21. /**
  22. * @ignore
  23. */
  24. define('IN_PHPBB', true);
  25. $phpbb_root_path = './forum/';
  26. $phpEx = substr(strrchr(__FILE__, '.'), 1);
  27. include($phpbb_root_path . 'common.' . $phpEx);
  28. include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
  29.  
  30. // Start session management
  31. $user->session_begin();
  32. $auth->acl($user->data);
  33. $user->setup('viewforum');
  34.  
  35. display_forums('', $config['load_moderators']);
  36.  
  37. // Set some stats, get posts count from forums data if we... hum... retrieve all forums data
  38. $total_posts = $config['num_posts'];
  39. $total_topics = $config['num_topics'];
  40. $total_users = $config['num_users'];
  41.  
  42. $l_total_user_s = ($total_users == 0) ? 'TOTAL_USERS_ZERO' : 'TOTAL_USERS_OTHER';
  43. $l_total_post_s = ($total_posts == 0) ? 'TOTAL_POSTS_ZERO' : 'TOTAL_POSTS_OTHER';
  44. $l_total_topic_s = ($total_topics == 0) ? 'TOTAL_TOPICS_ZERO' : 'TOTAL_TOPICS_OTHER';
  45.  
  46. // Grab group details for legend display
  47. if ($auth->acl_gets('a_group', 'a_groupadd', 'a_groupdel'))
  48. {
  49. $sql = 'SELECT group_id, group_name, group_colour, group_type
  50. FROM ' . GROUPS_TABLE . '
  51. WHERE group_legend = 1
  52. ORDER BY group_name ASC';
  53. }
  54. else
  55. {
  56. $sql = 'SELECT g.group_id, g.group_name, g.group_colour, g.group_type
  57. FROM ' . GROUPS_TABLE . ' g
  58. LEFT JOIN ' . USER_GROUP_TABLE . ' ug
  59. ON (
  60. g.group_id = ug.group_id
  61. AND ug.user_id = ' . $user->data['user_id'] . '
  62. AND ug.user_pending = 0
  63. )
  64. WHERE g.group_legend = 1
  65. AND (g.group_type <> ' . GROUP_HIDDEN . ' OR ug.user_id = ' . $user->data['user_id'] . ')
  66. ORDER BY g.group_name ASC';
  67. }
  68. $result = $db->sql_query($sql);
  69.  
  70. $legend = array();
  71. while ($row = $db->sql_fetchrow($result))
  72. {
  73. $colour_text = ($row['group_colour']) ? ' style="color:#' . $row['group_colour'] . '"' : '';
  74. $group_name = ($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name'];
  75.  
  76. if ($row['group_name'] == 'BOTS' || ($user->data['user_id'] != ANONYMOUS && !$auth->acl_get('u_viewprofile')))
  77. {
  78. $legend[] = '<span' . $colour_text . '>' . $group_name . '</span>';
  79. }
  80. else
  81. {
  82. $legend[] = '<a' . $colour_text . ' href="' . append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=group&amp;g=' . $row['group_id']) . '">' . $group_name . '</a>';
  83. }
  84. }
  85. $db->sql_freeresult($result);
  86.  
  87. $legend = implode(', ', $legend);
  88.  
  89. // Generate birthday list if required ...
  90. $birthday_list = '';
  91. if ($config['load_birthdays'] && $config['allow_birthdays'] && $auth->acl_gets('u_viewprofile', 'a_user', 'a_useradd', 'a_userdel'))
  92. {
  93. $now = phpbb_gmgetdate(time() + $user->timezone + $user->dst);
  94.  
  95. // Display birthdays of 29th february on 28th february in non-leap-years
  96. $leap_year_birthdays = '';
  97. if ($now['mday'] == 28 && $now['mon'] == 2 && !$user->format_date(time(), 'L'))
  98. {
  99. $leap_year_birthdays = " OR u.user_birthday LIKE '" . $db->sql_escape(sprintf('%2d-%2d-', 29, 2)) . "%'";
  100. }
  101.  
  102. $sql = 'SELECT u.user_id, u.username, u.user_colour, u.user_birthday
  103. FROM ' . USERS_TABLE . ' u
  104. LEFT JOIN ' . BANLIST_TABLE . " b ON (u.user_id = b.ban_userid)
  105. WHERE (b.ban_id IS NULL
  106. OR b.ban_exclude = 1)
  107. AND (u.user_birthday LIKE '" . $db->sql_escape(sprintf('%2d-%2d-', $now['mday'], $now['mon'])) . "%' $leap_year_birthdays)
  108. AND u.user_type IN (" . USER_NORMAL . ', ' . USER_FOUNDER . ')';
  109. $result = $db->sql_query($sql);
  110.  
  111. while ($row = $db->sql_fetchrow($result))
  112. {
  113. $birthday_list .= (($birthday_list != '') ? ', ' : '') . get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']);
  114.  
  115. if ($age = (int) substr($row['user_birthday'], -4))
  116. {
  117. $birthday_list .= ' (' . max(0, $now['year'] - $age) . ')';
  118. }
  119. }
  120. $db->sql_freeresult($result);
  121. }
  122.  
  123. // Assign index specific vars
  124. $template->assign_vars(array(
  125. 'TOTAL_POSTS' => sprintf($user->lang[$l_total_post_s], $total_posts),
  126. 'TOTAL_TOPICS' => sprintf($user->lang[$l_total_topic_s], $total_topics),
  127. 'TOTAL_USERS' => sprintf($user->lang[$l_total_user_s], $total_users),
  128. 'NEWEST_USER' => sprintf($user->lang['NEWEST_USER'], get_username_string('full', $config['newest_user_id'], $config['newest_username'], $config['newest_user_colour'])),
  129.  
  130. 'LEGEND' => $legend,
  131. 'BIRTHDAY_LIST' => $birthday_list,
  132.  
  133. 'FORUM_IMG' => $user->img('forum_read', 'NO_UNREAD_POSTS'),
  134. 'FORUM_UNREAD_IMG' => $user->img('forum_unread', 'UNREAD_POSTS'),
  135. 'FORUM_LOCKED_IMG' => $user->img('forum_read_locked', 'NO_UNREAD_POSTS_LOCKED'),
  136. 'FORUM_UNREAD_LOCKED_IMG' => $user->img('forum_unread_locked', 'UNREAD_POSTS_LOCKED'),
  137.  
  138. 'S_LOGIN_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login'),
  139. 'S_DISPLAY_BIRTHDAY_LIST' => ($config['load_birthdays']) ? true : false,
  140.  
  141. 'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx", 'hash=' . generate_link_hash('global') . '&amp;mark=forums') : '',
  142. 'U_MCP' => ($auth->acl_get('m_') || $auth->acl_getf_global('m_')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=main&amp;mode=front', true, $user->session_id) : '')
  143. );
  144.  
  145. // Output page
  146. page_header($user->lang['INDEX']);
  147.  
  148. $template->set_filenames(array(
  149. 'body' => 'index_body.html')
  150. );
  151.  
  152. page_footer();
  153.  
  154. ?>


Wszystko ładnie działa, ale jak kliknę jakiś link w ramce gdzie jest forum odnośnik otwiera się już w nowej stronie.

Jak zrobić, żeby wszystkie kliknięcia działały jedynie w obrębie ramki?
b4rt3kk
Musiałbyś dodać target="nazwa_ramki"
AddoN
ale nie chodzi o linki poza ramką, tylko te w niej, że jak się kliknie np w któreś forum to lista tematów otworzy się na tej samej stronie w której jest osadzona ramka.
b4rt3kk
Cytat(AddoN @ 1.07.2013, 14:45:58 ) *
ale nie chodzi o linki poza ramką, tylko te w niej, że jak się kliknie np w któreś forum to lista tematów otworzy się na tej samej stronie w której jest osadzona ramka.


Skoro tak to target="parent". Ale domyślny target linku, czyli self, powinien działać właśnie w ten sposób, co parent.
AddoN
ok, teraz działa. Wielkie dzięki
To jest wersja lo-fi głównej zawartości. Aby zobaczyć pełną wersję z większą zawartością, obrazkami i formatowaniem proszę kliknij tutaj.
Invision Power Board © 2001-2025 Invision Power Services, Inc.