issue 70 sitemap developement.

but yet not completed


git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8940 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ovclas 2011-08-30 01:56:38 +00:00
parent d497aa06d3
commit a3b9fc7338
9 changed files with 544 additions and 5 deletions

View file

@ -209,5 +209,23 @@
return $output;
}
/**
* @brief Return current lang list
**/
function getLangListByLangcodeForAutoComplete()
{
$requestVars = Context::getRequestVars();
$args->site_srl = (int)$requestVars->site_srl;
$args->page = 1; // /< Page
$args->list_count = 100; // /< the number of posts to display on a single page
$args->page_count = 5; // /< the number of pages that appear in the page navigation
$args->sort_index = 'name';
$args->order_type = 'asc';
$args->search_keyword = Context::get('search_keyword'); // /< keyword to search*/
return $this->getLangListByLangcode($args);
}
}
?>