- الرئيسية
- ما الجديد !
-
الصفحات▼
الصفحات
أهلا وسهلا بك زائرنا الكريم في منتدى دعم PBBoard الرسمي، لكي تتمكن من المشاركة ومشاهدة جميع أقسام المنتدى وكافة الميزات ، يجب عليك إنشاء حساب جديد بالتسجيل بالضغط هنا أو تسجيل الدخول اضغط هنا إذا كنت عضواً .
Translate portal to Persian
-
-
Translate portal to Persian17-10-2011 08:52 مساءً
-
Solimanمعلومات الكاتبPBBoard developer
- انضم في :
- 18-07-2009
- رقم العضوية :
- 1
- المشاركات :
- 13422
- الدولة :
- KSA
- الجنس:
- الدعوات:
- 55
- قوة السمعة:
- 82296
- موقعي:
- زيارة موقعي
-
!!Did you mean Blocks Titles
If this is what you mean
Open the file: setup/install/database_struct.php
And look for the function _InsertBlocks found in the last file:
CODEfunction _InsertBlocks() { global $PowerBB; $BlocksArray = array(); $BlocksArray[0] = array(); $BlocksArray[0]['title'] = 'الأقسام الرئيسية'; $BlocksArray[0]['text'] = '{template}portal_main_categories{/template}'; $BlocksArray[0]['place_block'] = 'left'; $BlocksArray[0]['sort'] = '1'; $BlocksArray[1] = array(); $BlocksArray[1]['title'] = 'إحصائيات'; $BlocksArray[1]['text'] = '{template}portal_static{/template}'; $BlocksArray[1]['place_block'] = 'left'; $BlocksArray[1]['sort'] = '2'; $BlocksArray[2] = array(); $BlocksArray[2]['title'] = 'الساعة'; $BlocksArray[2]['text'] = '{template}portal_clock{/template}'; $BlocksArray[2]['place_block'] = 'left'; $BlocksArray[2]['sort'] = '3'; $BlocksArray[3] = array(); $BlocksArray[3]['title'] = 'التقويم'; $BlocksArray[3]['text'] = '{template}portal_calendar{/template}'; $BlocksArray[3]['place_block'] = 'center'; $BlocksArray[3]['sort'] = '2'; $BlocksArray[4] = array(); $BlocksArray[4]['title'] = 'آخر الأخبار'; $BlocksArray[4]['text'] = '{template}portal_last_news{/template}'; $BlocksArray[4]['place_block'] = 'center'; $BlocksArray[4]['sort'] = '1'; $BlocksArray[5] = array(); $BlocksArray[5]['title'] = 'القائمة الرئيسية'; $BlocksArray[5]['text'] = '{template}portal_main_menu{/template}'; $BlocksArray[5]['place_block'] = 'right'; $BlocksArray[5]['sort'] = '1'; $BlocksArray[6] = array(); $BlocksArray[6]['title'] = 'المتواجدين الآن'; $BlocksArray[6]['text'] = '{template}portal_online{/template}'; $BlocksArray[6]['place_block'] = 'right'; $BlocksArray[6]['sort'] = '2'; $BlocksArray[7] = array(); $BlocksArray[7]['title'] = 'آخر المشاركات'; $BlocksArray[7]['text'] = '{template}portal_latest_posts{/template}'; $BlocksArray[7]['place_block'] = 'right'; $BlocksArray[7]['sort'] = '3'; $x = 0; $i = array(); while ($x < sizeof($BlocksArray)) { $insert = $PowerBB->DB->sql_query("INSERT INTO " . $PowerBB->prefix."blocks SET id='NULL', title='" . $BlocksArray[$x]['title'] . "', text='" . $BlocksArray[$x]['text'] . "', place_block='" . $BlocksArray[$x]['place_block'] . "', sort='" . $BlocksArray[$x]['sort'] . "'"); $i[$x] = ($insert) ? 'true' : 'false'; $x += 1; } return $i; }
الساعة الآن 11:42 PM