To create a new resource type you should place the section below in your config.php file. Note that the options you can use are discribed in the Built-in resource types section.
Example: You want to create a resource type MSdocs which will only have doc,ppt,xls extensions and be maximum 2 megabites large.
$config['ResourceType'][] = Array( 'name' => 'MSdocs', 'url' => $baseUrl . 'MSdocs', 'directory' => $baseDir . 'MSdocs', 'maxSize' => 2M, 'allowedExtensions' => 'doc,ppt,xls,', 'deniedExtensions' => '');
The CKFinder will use all the resources types including the one specifies by you. If you want to limit the CKFinder to use only your resource type you must place it in the $config['DefaultResourceTypes'] =''; field. Example:
$config['DefaultResourceTypes'] = 'MSdocs';