| Current Path : /home/zieirix/www/components/com_roksprocket/lib/RokSprocket/Provider/Cfs/ |
| Current File : /home/zieirix/www/components/com_roksprocket/lib/RokSprocket/Provider/Cfs/PosttypePopulator.php |
<?php
/**
* @version $Id: PosttypePopulator.php 10887 2013-05-30 06:31:57Z btowles $
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2020 RocketTheme, LLC
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
*/
class RokSprocket_Provider_Cfs_PosttypePopulator implements RokCommon_Filter_IPicklistPopulator
{
/**
*
* @return array;
*/
public function getPicklistOptions()
{
$options['post'] = 'post';
$options['page'] = 'page';
return $options;
}
}