├── .gitattributes ├── LICENSE.txt ├── README.md ├── admcenter ├── admin.php ├── cron_withdrawal.php ├── donate.php ├── footer.php ├── header.php ├── index.php ├── login.php ├── prize.php ├── setting.php ├── style │ ├── css │ │ ├── bootstrap-reset.css │ │ ├── bootstrap.min.css │ │ └── style.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regulard41d.eot │ ├── images │ │ ├── ajax-loader.gif │ │ ├── arrow-up.png │ │ ├── default-avatar.png │ │ └── logo.png │ └── javascripts │ │ └── common-scripts.js └── withdrawal.php ├── conf_donate.php ├── cron_withdrawal.php ├── donate.php ├── fail_donate.php ├── header.php ├── howto.php ├── includes ├── AsmoneyAPI.php ├── csrf.class.php ├── dbconnector.class.php ├── function.php ├── jsonRPCClient.php ├── smarty │ ├── Smarty.class.php │ ├── SmartyBC.class.php │ ├── debug.tpl │ ├── plugins │ │ ├── block.textformat.php │ │ ├── function.counter.php │ │ ├── function.cycle.php │ │ ├── function.fetch.php │ │ ├── function.html_checkboxes.php │ │ ├── function.html_image.php │ │ ├── function.html_options.php │ │ ├── function.html_radios.php │ │ ├── function.html_select_date.php │ │ ├── function.html_select_time.php │ │ ├── function.html_table.php │ │ ├── function.mailto.php │ │ ├── function.math.php │ │ ├── modifier.capitalize.php │ │ ├── modifier.date_format.php │ │ ├── modifier.debug_print_var.php │ │ ├── modifier.escape.php │ │ ├── modifier.regex_replace.php │ │ ├── modifier.replace.php │ │ ├── modifier.spacify.php │ │ ├── modifier.truncate.php │ │ ├── modifiercompiler.cat.php │ │ ├── modifiercompiler.count_characters.php │ │ ├── modifiercompiler.count_paragraphs.php │ │ ├── modifiercompiler.count_sentences.php │ │ ├── modifiercompiler.count_words.php │ │ ├── modifiercompiler.default.php │ │ ├── modifiercompiler.escape.php │ │ ├── modifiercompiler.from_charset.php │ │ ├── modifiercompiler.indent.php │ │ ├── modifiercompiler.lower.php │ │ ├── modifiercompiler.noprint.php │ │ ├── modifiercompiler.string_format.php │ │ ├── modifiercompiler.strip.php │ │ ├── modifiercompiler.strip_tags.php │ │ ├── modifiercompiler.to_charset.php │ │ ├── modifiercompiler.unescape.php │ │ ├── modifiercompiler.upper.php │ │ ├── modifiercompiler.wordwrap.php │ │ ├── outputfilter.trimwhitespace.php │ │ ├── shared.escape_special_chars.php │ │ ├── shared.literal_compiler_param.php │ │ ├── shared.make_timestamp.php │ │ ├── shared.mb_str_replace.php │ │ ├── shared.mb_unicode.php │ │ ├── shared.mb_wordwrap.php │ │ └── variablefilter.htmlspecialchars.php │ └── sysplugins │ │ ├── smarty_cacheresource.php │ │ ├── smarty_cacheresource_custom.php │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ ├── smarty_config_source.php │ │ ├── smarty_internal_cacheresource_file.php │ │ ├── smarty_internal_compile_append.php │ │ ├── smarty_internal_compile_assign.php │ │ ├── smarty_internal_compile_block.php │ │ ├── smarty_internal_compile_break.php │ │ ├── smarty_internal_compile_call.php │ │ ├── smarty_internal_compile_capture.php │ │ ├── smarty_internal_compile_config_load.php │ │ ├── smarty_internal_compile_continue.php │ │ ├── smarty_internal_compile_debug.php │ │ ├── smarty_internal_compile_eval.php │ │ ├── smarty_internal_compile_extends.php │ │ ├── smarty_internal_compile_for.php │ │ ├── smarty_internal_compile_foreach.php │ │ ├── smarty_internal_compile_function.php │ │ ├── smarty_internal_compile_if.php │ │ ├── smarty_internal_compile_include.php │ │ ├── smarty_internal_compile_include_php.php │ │ ├── smarty_internal_compile_insert.php │ │ ├── smarty_internal_compile_ldelim.php │ │ ├── smarty_internal_compile_nocache.php │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ ├── smarty_internal_compile_private_modifier.php │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ ├── smarty_internal_compile_private_object_function.php │ │ ├── smarty_internal_compile_private_print_expression.php │ │ ├── smarty_internal_compile_private_registered_block.php │ │ ├── smarty_internal_compile_private_registered_function.php │ │ ├── smarty_internal_compile_private_special_variable.php │ │ ├── smarty_internal_compile_rdelim.php │ │ ├── smarty_internal_compile_section.php │ │ ├── smarty_internal_compile_setfilter.php │ │ ├── smarty_internal_compile_while.php │ │ ├── smarty_internal_compilebase.php │ │ ├── smarty_internal_config.php │ │ ├── smarty_internal_config_file_compiler.php │ │ ├── smarty_internal_configfilelexer.php │ │ ├── smarty_internal_configfileparser.php │ │ ├── smarty_internal_data.php │ │ ├── smarty_internal_debug.php │ │ ├── smarty_internal_filter_handler.php │ │ ├── smarty_internal_function_call_handler.php │ │ ├── smarty_internal_get_include_path.php │ │ ├── smarty_internal_nocache_insert.php │ │ ├── smarty_internal_parsetree.php │ │ ├── smarty_internal_resource_eval.php │ │ ├── smarty_internal_resource_extends.php │ │ ├── smarty_internal_resource_file.php │ │ ├── smarty_internal_resource_php.php │ │ ├── smarty_internal_resource_registered.php │ │ ├── smarty_internal_resource_stream.php │ │ ├── smarty_internal_resource_string.php │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ ├── smarty_internal_template.php │ │ ├── smarty_internal_templatebase.php │ │ ├── smarty_internal_templatecompilerbase.php │ │ ├── smarty_internal_templatelexer.php │ │ ├── smarty_internal_templateparser.php │ │ ├── smarty_internal_utility.php │ │ ├── smarty_internal_write_file.php │ │ ├── smarty_resource.php │ │ ├── smarty_resource_custom.php │ │ ├── smarty_resource_recompiled.php │ │ ├── smarty_resource_uncompiled.php │ │ └── smarty_security.php ├── solvemedialib.php ├── system.class.php └── user.class.php ├── index.php ├── install.php ├── login.php ├── logout.php ├── maincore.php ├── pass.php ├── phpfaucet.sql ├── referral.php ├── register.php ├── setting.php ├── style ├── css │ ├── bootstrap-theme.css │ ├── bootstrap.css │ ├── font-awesome.css │ └── style.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── javascript │ ├── bootstrap.min.js │ └── jquery-1.11.2.min.js ├── template ├── donate.tpl ├── footer.tpl ├── header.tpl ├── howto.tpl ├── index.tpl ├── login.tpl ├── pass.tpl ├── referral.tpl ├── register.tpl └── withdrawal.tpl └── withdrawal.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/README.md -------------------------------------------------------------------------------- /admcenter/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/admin.php -------------------------------------------------------------------------------- /admcenter/cron_withdrawal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/cron_withdrawal.php -------------------------------------------------------------------------------- /admcenter/donate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/donate.php -------------------------------------------------------------------------------- /admcenter/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/footer.php -------------------------------------------------------------------------------- /admcenter/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/header.php -------------------------------------------------------------------------------- /admcenter/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/index.php -------------------------------------------------------------------------------- /admcenter/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/login.php -------------------------------------------------------------------------------- /admcenter/prize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/prize.php -------------------------------------------------------------------------------- /admcenter/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/setting.php -------------------------------------------------------------------------------- /admcenter/style/css/bootstrap-reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/css/bootstrap-reset.css -------------------------------------------------------------------------------- /admcenter/style/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/css/bootstrap.min.css -------------------------------------------------------------------------------- /admcenter/style/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/css/style.css -------------------------------------------------------------------------------- /admcenter/style/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /admcenter/style/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /admcenter/style/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /admcenter/style/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /admcenter/style/fonts/glyphicons-halflings-regulard41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/fonts/glyphicons-halflings-regulard41d.eot -------------------------------------------------------------------------------- /admcenter/style/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/images/ajax-loader.gif -------------------------------------------------------------------------------- /admcenter/style/images/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/images/arrow-up.png -------------------------------------------------------------------------------- /admcenter/style/images/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/images/default-avatar.png -------------------------------------------------------------------------------- /admcenter/style/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/images/logo.png -------------------------------------------------------------------------------- /admcenter/style/javascripts/common-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/style/javascripts/common-scripts.js -------------------------------------------------------------------------------- /admcenter/withdrawal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/admcenter/withdrawal.php -------------------------------------------------------------------------------- /conf_donate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/conf_donate.php -------------------------------------------------------------------------------- /cron_withdrawal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/cron_withdrawal.php -------------------------------------------------------------------------------- /donate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/donate.php -------------------------------------------------------------------------------- /fail_donate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/fail_donate.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/header.php -------------------------------------------------------------------------------- /howto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/howto.php -------------------------------------------------------------------------------- /includes/AsmoneyAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/AsmoneyAPI.php -------------------------------------------------------------------------------- /includes/csrf.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/csrf.class.php -------------------------------------------------------------------------------- /includes/dbconnector.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/dbconnector.class.php -------------------------------------------------------------------------------- /includes/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/function.php -------------------------------------------------------------------------------- /includes/jsonRPCClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/jsonRPCClient.php -------------------------------------------------------------------------------- /includes/smarty/Smarty.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/Smarty.class.php -------------------------------------------------------------------------------- /includes/smarty/SmartyBC.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/SmartyBC.class.php -------------------------------------------------------------------------------- /includes/smarty/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/debug.tpl -------------------------------------------------------------------------------- /includes/smarty/plugins/block.textformat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/block.textformat.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.counter.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.cycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.cycle.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.fetch.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_checkboxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.html_checkboxes.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.html_image.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.html_options.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_radios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.html_radios.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_select_date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.html_select_date.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_select_time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.html_select_time.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.html_table.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.mailto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.mailto.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/function.math.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.capitalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifier.capitalize.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.date_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifier.date_format.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.debug_print_var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifier.debug_print_var.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifier.escape.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.regex_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifier.regex_replace.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifier.replace.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.spacify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifier.spacify.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.truncate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifier.truncate.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.cat.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.count_characters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.count_characters.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.count_paragraphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.count_paragraphs.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.count_sentences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.count_sentences.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.count_words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.count_words.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.default.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.escape.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.from_charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.from_charset.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.indent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.indent.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.lower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.lower.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.noprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.noprint.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.string_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.string_format.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.strip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.strip.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.strip_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.strip_tags.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.to_charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.to_charset.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.unescape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.unescape.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.upper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.upper.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifiercompiler.wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/modifiercompiler.wordwrap.php -------------------------------------------------------------------------------- /includes/smarty/plugins/outputfilter.trimwhitespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/outputfilter.trimwhitespace.php -------------------------------------------------------------------------------- /includes/smarty/plugins/shared.escape_special_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/shared.escape_special_chars.php -------------------------------------------------------------------------------- /includes/smarty/plugins/shared.literal_compiler_param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/shared.literal_compiler_param.php -------------------------------------------------------------------------------- /includes/smarty/plugins/shared.make_timestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/shared.make_timestamp.php -------------------------------------------------------------------------------- /includes/smarty/plugins/shared.mb_str_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/shared.mb_str_replace.php -------------------------------------------------------------------------------- /includes/smarty/plugins/shared.mb_unicode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/shared.mb_unicode.php -------------------------------------------------------------------------------- /includes/smarty/plugins/shared.mb_wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/shared.mb_wordwrap.php -------------------------------------------------------------------------------- /includes/smarty/plugins/variablefilter.htmlspecialchars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/plugins/variablefilter.htmlspecialchars.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_cacheresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_cacheresource.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_cacheresource_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_cacheresource_custom.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_cacheresource_keyvaluestore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_cacheresource_keyvaluestore.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_config_source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_config_source.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_cacheresource_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_cacheresource_file.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_append.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_assign.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_block.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_break.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_break.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_call.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_capture.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_config_load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_config_load.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_continue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_continue.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_debug.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_eval.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_extends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_extends.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_for.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_for.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_foreach.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_function.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_if.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_if.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_include.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_include_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_include_php.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_insert.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_ldelim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_ldelim.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_nocache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_nocache.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_private_block_plugin.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_private_function_plugin.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_private_modifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_private_modifier.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_private_object_block_function.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_private_object_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_private_object_function.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_private_print_expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_private_print_expression.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_private_registered_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_private_registered_block.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_private_registered_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_private_registered_function.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_private_special_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_private_special_variable.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_rdelim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_rdelim.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_section.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_setfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_setfilter.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compile_while.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compile_while.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_compilebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_compilebase.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_config.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_config_file_compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_config_file_compiler.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_configfilelexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_configfilelexer.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_configfileparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_configfileparser.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_data.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_debug.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_filter_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_filter_handler.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_function_call_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_function_call_handler.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_get_include_path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_get_include_path.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_nocache_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_nocache_insert.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_parsetree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_parsetree.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_resource_eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_resource_eval.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_resource_extends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_resource_extends.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_resource_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_resource_file.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_resource_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_resource_php.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_resource_registered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_resource_registered.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_resource_stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_resource_stream.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_resource_string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_resource_string.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_smartytemplatecompiler.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_template.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_templatebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_templatebase.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_templatecompilerbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_templatecompilerbase.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_templatelexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_templatelexer.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_templateparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_templateparser.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_utility.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_write_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_internal_write_file.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_resource.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_resource_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_resource_custom.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_resource_recompiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_resource_recompiled.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_resource_uncompiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_resource_uncompiled.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/smarty/sysplugins/smarty_security.php -------------------------------------------------------------------------------- /includes/solvemedialib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/solvemedialib.php -------------------------------------------------------------------------------- /includes/system.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/system.class.php -------------------------------------------------------------------------------- /includes/user.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/includes/user.class.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/index.php -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/install.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/login.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/logout.php -------------------------------------------------------------------------------- /maincore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/maincore.php -------------------------------------------------------------------------------- /pass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/pass.php -------------------------------------------------------------------------------- /phpfaucet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/phpfaucet.sql -------------------------------------------------------------------------------- /referral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/referral.php -------------------------------------------------------------------------------- /register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/register.php -------------------------------------------------------------------------------- /setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/setting.php -------------------------------------------------------------------------------- /style/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/css/bootstrap-theme.css -------------------------------------------------------------------------------- /style/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/css/bootstrap.css -------------------------------------------------------------------------------- /style/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/css/font-awesome.css -------------------------------------------------------------------------------- /style/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/css/style.css -------------------------------------------------------------------------------- /style/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /style/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /style/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /style/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /style/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /style/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /style/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /style/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /style/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /style/javascript/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/javascript/bootstrap.min.js -------------------------------------------------------------------------------- /style/javascript/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/style/javascript/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /template/donate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/template/donate.tpl -------------------------------------------------------------------------------- /template/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/template/footer.tpl -------------------------------------------------------------------------------- /template/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/template/header.tpl -------------------------------------------------------------------------------- /template/howto.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/template/howto.tpl -------------------------------------------------------------------------------- /template/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/template/index.tpl -------------------------------------------------------------------------------- /template/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/template/login.tpl -------------------------------------------------------------------------------- /template/pass.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/template/pass.tpl -------------------------------------------------------------------------------- /template/referral.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/template/referral.tpl -------------------------------------------------------------------------------- /template/register.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/template/register.tpl -------------------------------------------------------------------------------- /template/withdrawal.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/template/withdrawal.tpl -------------------------------------------------------------------------------- /withdrawal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpfaucet/faucet/HEAD/withdrawal.php --------------------------------------------------------------------------------