getHideFilesRegex() публичный Метод

Get regular expression to hide files
public getHideFilesRegex ( ) : array
Результат array
 /**
  * Check given file name
  * Return true if file name matches hidden file names list
  *
  * @param string $fileName
  * @access public
  * @return boolean
  */
 function checkIsHiddenFile($fileName)
 {
     if (is_null($this->_config)) {
         $this->_config =& CKFinder_Connector_Core_Factory::getInstance("Core_Config");
     }
     $regex = $this->_config->getHideFilesRegex();
     if ($regex) {
         return preg_match($regex, $fileName);
     }
     return false;
 }