Initial import from local backup (Documents-Playground/pakerpale)

This commit is contained in:
jeonghwa
2026-07-03 05:27:41 +09:00
commit 5b1bfe3390
2223 changed files with 561621 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
if (element('board_list', $view)) {
foreach (element('board_list', $view) as $key => $board) {
$config = array(
'skin' => 'mobile',
'brd_key' => element('brd_key', $board),
'limit' => 5,
'length' => 40,
'is_gallery' => '',
'image_width' => '',
'image_height' => '',
'cache_minute' => 1,
);
echo $this->board->latest($config);
}
}