mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
Enhance the search module to view mobile page, and add a default skin, sutable for mobile environment.
21 lines
No EOL
377 B
PHP
21 lines
No EOL
377 B
PHP
<?php
|
|
/* Copyright (C) XETOWN CMS <https://www.xetown.com> */
|
|
/**
|
|
* The view class of the integration_search module
|
|
*
|
|
* @author MinSoo Kim <misol.kr@gmail.com>
|
|
*/
|
|
require_once(_XE_PATH_.'modules/board/board.view.php');
|
|
|
|
class integration_searchMobile extends integration_searchView
|
|
{
|
|
/**
|
|
* Search Result
|
|
*
|
|
* @return Object
|
|
*/
|
|
function IS()
|
|
{
|
|
parent::IS();
|
|
}
|
|
} |