بابهت: [پێوهکراو]دامهزراندنی وڵات .
سڵاوی خودای گهورهتان لێبێت هاوڕێیانی مهکۆکانی وێبچن،لهم بابهته باس له چۆنیهتی دانانی وڵات دهکهم بۆ مهکۆی Punbb هیوادارم سوودی ههبێت.
سهرهتا ئهم پێوهکراوهلێرهدادابگره،
ئهمهش نموونهی ئهم پێوهکراوه 
ئینجا چۆنیهتی دامهزراندنی لێرهدا ڕوون دهکهمهوه .
#
#---------[ 1. بهرزبکهوه ]-------------------------------------------------------
#
install_mod.php/
./img/flags
./mods/*
#
#---------[ 2. ئینستاڵیبکه/دایمهزرێنه ]----------------------------------------------------------
#
./install_mod.php
#
#---------[ 3. بیسڕهوه ]-------------------------------------------------------
#
./install_mod.php
#
#---------[ 4. بیکهرهوه ]---------------------------------------------------------
#
./profile.php
#
#---------[ 5. بگهڕێ (لهدێری: 736) ]---------------------------------------------
#
$form = extract_elements(array('realname', 'url', 'location'));
#
#---------[ 6. بیگۆڕه به ]-------------------------------------------------
#
$form = extract_elements(array('realname', 'url', 'location', 'country'));
#
#---------[ 7. بگهڕێ (لهدێری: 895) ]---------------------------------------------
#
$result = $db->query('SELECT u.username, u.email, u.title, u.realname, u.url, u.jabber, u.icq, u.msn, u.aim, u.yahoo, u.location, u.use_avatar, u.signature, u.disp_topics, u.disp_posts, u.email_setting, u.save_pass, u.notify_with_post, u.show_smilies, u.show_img, u.show_img_sig, u.show_avatars, u.show_sig, u.timezone, u.language, u.style, u.num_posts, u.last_post, u.registered, u.registration_ip, u.admin_note, g.g_id, g.g_user_title FROM '.$db->prefix.'users AS u LEFT JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id WHERE u.id='.$id) or error('Unable to fetch user info', __FILE__, __LINE__, $db->error());
#
#---------[ 8. بیگۆڕه به ]-------------------------------------------------
#
$result = $db->query('SELECT u.username, u.email, u.title, u.realname, u.url, u.jabber, u.icq, u.msn, u.aim, u.yahoo, u.location, u.use_avatar, u.signature, u.disp_topics, u.disp_posts, u.email_setting, u.save_pass, u.notify_with_post, u.show_smilies, u.show_img, u.show_img_sig, u.show_avatars, u.show_sig, u.timezone, u.language, u.style, u.num_posts, u.last_post, u.registered, u.registration_ip, u.admin_note, u.country, g.g_id, g.g_user_title FROM '.$db->prefix.'users AS u LEFT JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id WHERE u.id='.$id) or error('Unable to fetch user info', __FILE__, __LINE__, $db->error());
#
#---------[ 9. بگهڕێ (لهدێری: 980/981) ]-----------------------------------------
#
<dt><?php echo $lang_profile['Location'] ?>: </dt>
<dd><?php echo ($user['location'] !='') ? pun_htmlspecialchars(($pun_config['o_censoring'] == '1') ? censor_words($user['location']) : $user['location']) : $lang_profile['Unknown']; ?></dd>
#
#---------[ 10. لهدوای ئهمه زیاد بکه ]-------------------------------------------------
#
<dt><?php echo $lang_profile['Country'] ?>: </dt>
<dd><?php echo ($user['country'] !='') ? pun_htmlspecialchars($user['country']) . '<br><img src="./img/flags/'.$user['country'].'.png" alt="'.$user['country'].'">' : $lang_profile['Unknown']; ?></dd>
#
#---------[ 11. بگهڕێ (لهدێری: 1236) ]------------------------------------------
#
<label><?php echo $lang_profile['Location'] ?><br /><input type="text" name="form[location]" value="<?php echo pun_htmlspecialchars($user['location']) ?>" size="30" maxlength="30" /><br /></label>
#
#---------[ 12. لهدوای ئهمه زیاد بکه ]-------------------------------------------------
#
<label>
<?php echo $lang_profile['Country'] ?><br>
<select name="form[country]">
<?php require PUN_ROOT.'mods/countries.php';
echo '<option value=" "';
if ($user['country'] == " ") {
echo ' selected="selected"'; }
echo '> none </option>';
foreach ($countries as $value) {
echo '<option value="' . $value. '"';
if ($user['country'] == $value) {
echo ' selected="selected"'; }
echo '>' . $value . '</option>'; } ?>
</select>
<?php if ($user['country'] != NULL) {
echo '<img src="./img/flags/'.$user['country'].'.png" alt="'.$user['country'].'">'; } ?>
</label>
#
#---------[ 13. پاشهکهوتی بکهو بهرزیان بکهوه ]-------------------------------------------------
#
./profile.php
#
#---------[ 14. بکهرهوه ]--------------------------------------------------------
#
./userlist.php
#
#---------[ 15. بگهڕێ (لهدێری: 38) ]---------------------------------------------
#
require PUN_ROOT.'lang/'.$pun_user['language'].'/search.php';
#
#---------[ 16. لهدوای ئهمه زیاد بکه ]-------------------------------------------------
#
require PUN_ROOT.'lang/'.$pun_user['language'].'/profile.php';
#
#---------[ 17. بگهڕێ (لهدێری: 150) ]--------------------------------------------
#
<th class="tcr" scope="col"><?php echo $lang_common['Registered'] ?></th>
#
#---------[ 18. لهدوای ئهمه زیاد بکه ]-------------------------------------------------
#
<th class="tcr" scope="col"><?php echo $lang_profile['Country'] ?></th>
#
#---------[ 19. بگهڕێ (لهدێری: 158) ]--------------------------------------------
#
$result = $db->query('SELECT u.id, u.username, u.title, u.num_posts, u.registered, g.g_id, g.g_user_title FROM '.$db->prefix.'users AS u LEFT JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id WHERE u.id>1'.(!empty($where_sql) ? ' AND '.implode(' AND ', $where_sql) : '').' ORDER BY '.$sort_by.' '.$sort_dir.' LIMIT '.$start_from.', 50') or error('Unable to fetch user list', __FILE__, __LINE__, $db->error());
#
#---------[ 20. بیگۆڕه به ]------------------------------------------------
#
$result = $db->query('SELECT u.id, u.username, u.title, u.num_posts, u.registered, u.country, g.g_id, g.g_user_title FROM '.$db->prefix.'users AS u LEFT JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id WHERE u.id>1'.(!empty($where_sql) ? ' AND '.implode(' AND ', $where_sql) : '').' ORDER BY '.$sort_by.' '.$sort_dir.' LIMIT '.$start_from.', 50') or error('Unable to fetch user list', __FILE__, __LINE__, $db->error());
#
#---------[ 21. بگهڕێ (لهدێری: 163) ]--------------------------------------------
#
$user_title_field = get_title($user_data);
#
#---------[ 22. لهدوای ئهمه زیاد بکه ]-------------------------------------------------
#
$user_country = $user_data['country'];
#
#---------[ 23. بگهڕێ (لهدێری: 172) ]-------------------------------------------
#
<td class="tcr"><?php echo format_time($user_data['registered'], true) ?></td>
#
#---------[ 24. لهدوای ئهمه زیاد بکه ]-------------------------------------------------
#
<td class="tcr">
<?php if ( $user_country != '' ) {
echo '<img src="./img/flags/'.$user_country.'.png" alt="'.$user_country.'" title="'.$user_country.'">'; } ?>
</td>
#
#---------[ 25. پاشهکهوتیان بکه و بهرزیان بکهوه ]-------------------------------------------------
#
./userlist.php
#
#---------[ 26. بکهرهوه ]-------------------------------------------------------
#
./viewtopic.php
#
#---------[ 27. بگهڕێ (لهدێری: 186) ]-------------------------------------------
#
$result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id INNER JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id LEFT JOIN '.$db->prefix.'online AS o ON (o.user_id=u.id AND o.user_id!=1 AND o.idle=0) WHERE p.topic_id='.$id.' ORDER BY p.id LIMIT '.$start_from.','.$pun_user['disp_posts'], true) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
#
#---------[ 28. بیگۆڕه به ]-----------------------------------------------
#
$result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, u.country, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id INNER JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id LEFT JOIN '.$db->prefix.'online AS o ON (o.user_id=u.id AND o.user_id!=1 AND o.idle=0) WHERE p.topic_id='.$id.' ORDER BY p.id LIMIT '.$start_from.','.$pun_user['disp_posts'], true) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
#
#---------[ 29. بگهڕێ (لهدێری: 201) ]-------------------------------------------
#
$user_title = get_title($cur_post);
#
#---------[ 30. لهدوای ئهمه زیاد بکه ]-------------------------------------------------
#
$user_country = $cur_post['country'];
#
#---------[ 31. بگهڕێ (لهدێری: 322) ]--------------------------------------------
#
<dd class="postavatar"><?php echo $user_avatar ?> </dd>
#
#---------[ 32. لهدوای ئهمه زیاد بکه ]-------------------------------------------------
#
<?php if ( $user_country != '') {
echo '<dd class="postavatar"><img src="./img/flags/'.$user_country.'.png" alt="'.$user_country.'" title="'.$user_country.'"></dd>'; } ?>
#
#---------[ 33. پاشهکهوتیان بکهو بهرزیان بکهوه ]-------------------------------------------------
#
./viewtopic.php
#
#---------[ 34. بکهوه ]-------------------------------------------------------
#
./lang/kurdish/profile.php
#
#---------[ 35. بگهڕێ (لهدێری: 79) ]---------------------------------------------
#
'Location' => 'Location',
#
#---------[ 36. لهدوای ئهمه زیاد بکه ]-------------------------------------------------
#
'Country' => 'وڵات',
#
#---------[ 37. پاشهکهوتیان بکهو بهرزیان بکهوه ]-------------------------------------------------
#هیوادارم سوودی ههبێت،
ئهم بابهته له ئامادهکردنی ئهمین کورد،
مافی پارێزراوه بۆ ماڵپهڕ و مهکۆکانی وێبچن.
http://dictio.kurditgroup.org/