Make be able to search on your mobile phone

Enhance the search module to view mobile page, and add a default skin,
sutable for mobile environment.
This commit is contained in:
MinSoo Kim 2015-12-19 20:34:52 +09:00
parent 8dfd018435
commit 64acd714e0
18 changed files with 1093 additions and 1 deletions

View file

@ -0,0 +1,21 @@
<?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();
}
}