1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
final class ITSEC_File_Change_Settings extends ITSEC_Settings { public function get_id() { return 'file-change'; }
public function get_defaults() { return array( 'file_list' => array(), 'types' => array( '.log', '.mo', '.po', // Images '.bmp', '.gif', '.ico', '.jpe', '.jpeg', '.jpg', '.png', '.psd', '.raw', '.svg', '.tif', '.tiff',
// Audio '.aif', '.flac', '.m4a', '.mp3', '.oga', '.ogg', '.ogg', '.ra', '.wav', '.wma',
// Video '.asf', '.avi', '.mkv', '.mov', '.mp4', '.mpe', '.mpeg', '.mpg', '.ogv', '.qt', '.rm', '.vob', '.webm', '.wm', '.wmv', ), 'expected_hashes' => array(), 'last_scan' => 0, ); } }
ITSEC_Modules::register_settings( new ITSEC_File_Change_Settings() );
|