Files
cm-app-web/views/main/mobile/main.php

17 lines
368 B
PHP

<?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);
}
}