├── vendor ├── phpmailer │ └── phpmailer │ │ ├── VERSION │ │ ├── src │ │ └── Exception.php │ │ ├── language │ │ ├── phpmailer.lang-zh_cn.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-zh.php │ │ ├── phpmailer.lang-ko.php │ │ ├── phpmailer.lang-he.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-nb.php │ │ ├── phpmailer.lang-cs.php │ │ ├── phpmailer.lang-lv.php │ │ ├── phpmailer.lang-sv.php │ │ ├── phpmailer.lang-da.php │ │ ├── phpmailer.lang-vi.php │ │ ├── phpmailer.lang-lt.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-eo.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-az.php │ │ ├── phpmailer.lang-hi.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-fa.php │ │ ├── phpmailer.lang-am.php │ │ ├── phpmailer.lang-be.php │ │ ├── phpmailer.lang-bg.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-tl.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-ba.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-sk.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-gl.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-hr.php │ │ ├── phpmailer.lang-ms.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-el.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-sl.php │ │ ├── phpmailer.lang-ka.php │ │ ├── phpmailer.lang-sr.php │ │ ├── phpmailer.lang-mg.php │ │ ├── phpmailer.lang-id.php │ │ ├── phpmailer.lang-uk.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-pt.php │ │ ├── phpmailer.lang-pt_br.php │ │ └── phpmailer.lang-fr.php │ │ ├── composer.json │ │ └── COMMITMENT ├── symfony │ └── finder │ │ ├── Tests │ │ ├── Fixtures │ │ │ ├── .dot │ │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ ├── one │ │ │ │ ├── a │ │ │ │ ├── .dot │ │ │ │ └── b │ │ │ │ │ ├── c.neon │ │ │ │ │ └── d.neon │ │ │ ├── A │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat │ │ │ │ └── a.dat │ │ │ ├── copy │ │ │ │ └── A │ │ │ │ │ ├── B │ │ │ │ │ ├── ab.dat.copy │ │ │ │ │ └── C │ │ │ │ │ │ └── abc.dat.copy │ │ │ │ │ └── a.dat.copy │ │ │ ├── with space │ │ │ │ └── foo.txt │ │ │ ├── r+e.gex[c]a(r)s │ │ │ │ └── dir │ │ │ │ │ └── bar.dat │ │ │ ├── dolor.txt │ │ │ ├── ipsum.txt │ │ │ └── lorem.txt │ │ ├── Iterator │ │ │ ├── MockFileListIterator.php │ │ │ ├── Iterator.php │ │ │ ├── CustomFilterIteratorTest.php │ │ │ ├── FilenameFilterIteratorTest.php │ │ │ ├── RecursiveDirectoryIteratorTest.php │ │ │ ├── SizeRangeFilterIteratorTest.php │ │ │ └── FileTypeFilterIteratorTest.php │ │ └── Comparator │ │ │ └── ComparatorTest.php │ │ ├── .gitignore │ │ ├── Exception │ │ └── AccessDeniedException.php │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml.dist │ │ ├── LICENSE │ │ ├── Iterator │ │ ├── FilenameFilterIterator.php │ │ ├── DepthRangeFilterIterator.php │ │ ├── FileTypeFilterIterator.php │ │ ├── SizeRangeFilterIterator.php │ │ ├── PathFilterIterator.php │ │ ├── DateRangeFilterIterator.php │ │ ├── FilecontentFilterIterator.php │ │ └── CustomFilterIterator.php │ │ ├── Comparator │ │ └── DateComparator.php │ │ ├── CHANGELOG.md │ │ └── SplFileInfo.php ├── gregwar │ └── captcha │ │ ├── .gitignore │ │ ├── src │ │ └── Gregwar │ │ │ └── Captcha │ │ │ ├── Font │ │ │ ├── captcha0.ttf │ │ │ ├── captcha1.ttf │ │ │ ├── captcha2.ttf │ │ │ ├── captcha3.ttf │ │ │ ├── captcha4.ttf │ │ │ └── captcha5.ttf │ │ │ ├── PhraseBuilderInterface.php │ │ │ ├── CaptchaBuilderInterface.php │ │ │ └── PhraseBuilder.php │ │ ├── demo │ │ ├── demo.php │ │ ├── fingerprint.php │ │ ├── output.php │ │ ├── index.php │ │ ├── session.php │ │ ├── ocr.php │ │ └── form.php │ │ ├── .travis.yml │ │ ├── phpunit.xml.dist │ │ ├── tests │ │ └── CaptchaBuilderTest.php │ │ ├── composer.json │ │ └── LICENSE ├── autoload.php └── composer │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── LICENSE │ ├── autoload_static.php │ └── autoload_real.php ├── static ├── image │ └── img.jpg └── layer │ └── theme │ └── default │ ├── icon.png │ ├── icon-ext.png │ ├── loading-0.gif │ ├── loading-1.gif │ └── loading-2.gif ├── system ├── fonts │ ├── texb.ttf │ └── index.html ├── .htaccess ├── index.html ├── core │ ├── index.html │ └── compat │ │ └── index.html ├── database │ ├── index.html │ └── drivers │ │ ├── index.html │ │ ├── cubrid │ │ └── index.html │ │ ├── ibase │ │ └── index.html │ │ ├── mssql │ │ └── index.html │ │ ├── mysql │ │ └── index.html │ │ ├── mysqli │ │ └── index.html │ │ ├── oci8 │ │ └── index.html │ │ ├── odbc │ │ └── index.html │ │ ├── pdo │ │ ├── index.html │ │ └── subdrivers │ │ │ └── index.html │ │ ├── sqlite │ │ └── index.html │ │ ├── sqlsrv │ │ └── index.html │ │ ├── postgre │ │ └── index.html │ │ └── sqlite3 │ │ ├── index.html │ │ └── sqlite3_utility.php ├── helpers │ └── index.html ├── language │ ├── index.html │ └── english │ │ ├── index.html │ │ ├── number_lang.php │ │ └── pagination_lang.php └── libraries │ ├── index.html │ ├── Cache │ ├── index.html │ └── drivers │ │ └── index.html │ ├── Session │ ├── index.html │ └── drivers │ │ └── index.html │ └── Javascript │ └── index.html ├── composer.json ├── .htaccess ├── application ├── .htaccess ├── views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ ├── index.html │ │ │ ├── error_php.php │ │ │ └── error_exception.php │ │ ├── index.html │ │ └── html │ │ │ ├── index.html │ │ │ ├── error_php.php │ │ │ ├── error_exception.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ └── error_404.php │ ├── comm │ │ └── footer.php │ ├── home.php │ ├── user │ │ └── reset.php │ └── admin │ │ ├── member.php │ │ ├── cat.php │ │ └── cat_add.php ├── index.html ├── cache │ └── index.html ├── config │ ├── index.html │ ├── hitokoto_conf.php │ ├── hooks.php │ ├── profiler.php │ ├── memcached.php │ ├── pagination.php │ └── routes.php ├── core │ └── index.html ├── helpers │ ├── index.html │ ├── trim_array_helper.php │ ├── output_helper.php │ ├── json_helper.php │ ├── getip_helper.php │ └── redis_helper.php ├── hooks │ └── index.html ├── language │ ├── index.html │ └── english │ │ └── index.html ├── logs │ └── index.html ├── models │ ├── index.html │ └── Api_model.php ├── controllers │ ├── index.html │ ├── Welcome.php │ ├── Home.php │ └── Password.php ├── libraries │ └── index.html └── third_party │ └── index.html ├── LICENSE └── README.md /vendor/phpmailer/phpmailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.0.7 -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/ab.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/a.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/.dot/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/A/B/C/abc.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/.dot: -------------------------------------------------------------------------------- 1 | .dot -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/c.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/one/b/d.neon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/ab.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/a.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/with space/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/copy/A/B/C/abc.dat.copy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/r+e.gex[c]a(r)s/dir/bar.dat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/symfony/finder/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/dolor.txt: -------------------------------------------------------------------------------- 1 | dolor sit amet 2 | DOLOR SIT AMET -------------------------------------------------------------------------------- /static/image/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/image/img.jpg -------------------------------------------------------------------------------- /vendor/gregwar/captcha/.gitignore: -------------------------------------------------------------------------------- 1 | demo/*.jpg 2 | demo/*.pgm 3 | demo/temp/ 4 | vendor/ 5 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/ipsum.txt: -------------------------------------------------------------------------------- 1 | ipsum dolor sit amet 2 | IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Fixtures/lorem.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum dolor sit amet 2 | LOREM IPSUM DOLOR SIT AMET -------------------------------------------------------------------------------- /static/layer/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/icon.png -------------------------------------------------------------------------------- /static/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /static/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /static/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /static/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/static/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "phpmailer/phpmailer": "^6.0", 4 | "gregwar/captcha": "^1.1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteRule ^(.*)$ index.php/$1 [L] -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha0.ttf -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha1.ttf -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha2.ttf -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha3.ttf -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha4.ttf -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhao/AL_Hitokoto/HEAD/vendor/gregwar/captcha/src/Gregwar/Captcha/Font/captcha5.ttf -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | build() 10 | ->save('out.jpg') 11 | ; 12 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3.3 5 | - 5.3 6 | - 5.4 7 | - 5.5 8 | - 5.6 9 | - 7.0 10 | - 7.1 11 | - 7.2 12 | - hhvm 13 | 14 | script: 15 | - composer install 16 | - phpunit 17 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/fingerprint.php: -------------------------------------------------------------------------------- 1 | build() 9 | ->getFingerprint() 10 | ); 11 | 12 | echo "\n"; 13 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/output.php: -------------------------------------------------------------------------------- 1 | build() 11 | ->output() 12 | ; 13 | -------------------------------------------------------------------------------- /application/helpers/trim_array_helper.php: -------------------------------------------------------------------------------- 1 | $value){ 17 | $array[$key]=trim($value); 18 | } 19 | return $array; 20 | } -------------------------------------------------------------------------------- /application/helpers/output_helper.php: -------------------------------------------------------------------------------- 1 | 14){ 13 | $string = mb_substr($string,0,14,'utf-8'); 14 | return $string."..."; 15 | } 16 | return $string; 17 | } -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/symfony/finder'), 10 | 'PHPMailer\\PHPMailer\\' => array($vendorDir . '/phpmailer/phpmailer/src'), 11 | 'Gregwar\\' => array($vendorDir . '/gregwar/captcha/src/Gregwar'), 12 | ); 13 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Captchas gallery

8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./tests/ 7 | 8 | 9 | 10 | 11 | 12 | ./src 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /application/config/hitokoto_conf.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | interface PhraseBuilderInterface 11 | { 12 | /** 13 | * Generates random phrase of given length with given charset 14 | */ 15 | public function build(); 16 | 17 | /** 18 | * "Niceize" a code 19 | */ 20 | public function niceize($str); 21 | } 22 | -------------------------------------------------------------------------------- /application/views/comm/footer.php: -------------------------------------------------------------------------------- 1 | 4 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /application/helpers/json_helper.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Exception; 13 | 14 | /** 15 | * @author Jean-François Simon 16 | */ 17 | class AccessDeniedException extends \UnexpectedValueException 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/symfony/finder/README.md: -------------------------------------------------------------------------------- 1 | Finder Component 2 | ================ 3 | 4 | The Finder component finds files and directories via an intuitive fluent 5 | interface. 6 | 7 | Resources 8 | --------- 9 | 10 | * [Documentation](https://symfony.com/doc/current/components/finder.html) 11 | * [Contributing](https://symfony.com/doc/current/contributing/index.html) 12 | * [Report issues](https://github.com/symfony/symfony/issues) and 13 | [send Pull Requests](https://github.com/symfony/symfony/pulls) 14 | in the [main Symfony repository](https://github.com/symfony/symfony) 15 | -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/CaptchaBuilderInterface.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Tests\Iterator; 13 | 14 | class MockFileListIterator extends \ArrayIterator 15 | { 16 | public function __construct(array $filesArray = []) 17 | { 18 | $files = array_map(function ($file) { return new MockSplFileInfo($file); }, $filesArray); 19 | parent::__construct($files); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/tests/CaptchaBuilderTest.php: -------------------------------------------------------------------------------- 1 | build() 15 | ->save('out.jpg') 16 | ; 17 | 18 | $this->assertTrue(file_exists(__DIR__.'/../out.jpg')); 19 | } 20 | 21 | public function testFingerPrint() 22 | { 23 | $int = count(CaptchaBuilder::create() 24 | ->build() 25 | ->getFingerprint() 26 | ); 27 | 28 | $this->assertTrue(is_int($int)); 29 | } 30 | } -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/session.php: -------------------------------------------------------------------------------- 1 | getPhrase(); 14 | 15 | // Setting the header to image jpeg because we here render an image 16 | header('Content-Type: image/jpeg'); 17 | 18 | // Running the actual rendering of the captcha image 19 | $captcha 20 | ->build() 21 | ->output() 22 | ; 23 | -------------------------------------------------------------------------------- /application/helpers/getip_helper.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /application/controllers/Welcome.php: -------------------------------------------------------------------------------- 1 | 19 | * @see https://codeigniter.com/user_guide/general/urls.html 20 | */ 21 | public function index() 22 | { 23 | $this->load->view('welcome_message'); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/ocr.php: -------------------------------------------------------------------------------- 1 | setDistortion(false) 24 | ->build() 25 | ; 26 | 27 | if ($captcha->isOCRReadable()) { 28 | $passed++; 29 | $captcha->save("passed$passed.jpg"); 30 | echo "passed at ocr... "; 31 | } else { 32 | echo "failed... "; 33 | } 34 | 35 | echo "pass rate: ".round(100*$passed/($i+1),2)."%\n"; 36 | } 37 | 38 | echo "\n"; 39 | echo "Over, $passed/$tests readed with OCR\n"; 40 | -------------------------------------------------------------------------------- /vendor/symfony/finder/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "symfony/finder", 3 | "type": "library", 4 | "description": "Symfony Finder Component", 5 | "keywords": [], 6 | "homepage": "https://symfony.com", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Fabien Potencier", 11 | "email": "fabien@symfony.com" 12 | }, 13 | { 14 | "name": "Symfony Community", 15 | "homepage": "https://symfony.com/contributors" 16 | } 17 | ], 18 | "require": { 19 | "php": "^7.1.3" 20 | }, 21 | "autoload": { 22 | "psr-4": { "Symfony\\Component\\Finder\\": "" }, 23 | "exclude-from-classmap": [ 24 | "/Tests/" 25 | ] 26 | }, 27 | "minimum-stability": "dev", 28 | "extra": { 29 | "branch-alias": { 30 | "dev-master": "4.2-dev" 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /application/controllers/Home.php: -------------------------------------------------------------------------------- 1 | data['uid'] = $this->session->userdata('uid'); 13 | $this->data['email'] = $this->session->userdata('email'); 14 | $this->data['level']=$this->session->userdata('level'); 15 | $this->data['nickname'] = $this->session->userdata('nickname'); 16 | $this->data['csrf_name'] = $this->security->get_csrf_token_name(); 17 | $this->data['csrf_hash'] = $this->security->get_csrf_hash(); 18 | } 19 | 20 | public function index() 21 | { 22 | // $this->output->cache(10); 23 | $this->data['site_name'] = 'Hitokoto'; 24 | $this->data['page_title'] = '首页'; 25 | $this->load->view('home', $this->data); 26 | } 27 | } -------------------------------------------------------------------------------- /vendor/gregwar/captcha/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "gregwar/captcha", 3 | "type": "captcha", 4 | "description": "Captcha generator", 5 | "keywords": ["captcha", "spam", "bot"], 6 | "homepage": "https://github.com/Gregwar/Captcha", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Grégoire Passault", 11 | "email": "g.passault@gmail.com", 12 | "homepage": "http://www.gregwar.com/" 13 | }, 14 | { 15 | "name": "Jeremy Livingston", 16 | "email": "jeremy.j.livingston@gmail.com" 17 | } 18 | ], 19 | "require": { 20 | "php": ">=5.3.0", 21 | "ext-gd": "*", 22 | "ext-mbstring": "*", 23 | "symfony/finder": "*" 24 | }, 25 | "autoload": { 26 | "psr-4": { 27 | "Gregwar\\": "src/Gregwar" 28 | } 29 | }, 30 | "require-dev": { 31 | "phpunit/phpunit": "^6.4" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /vendor/symfony/finder/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | ./Tests/ 18 | 19 | 20 | 21 | 22 | 23 | ./ 24 | 25 | ./Tests 26 | ./vendor 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

A PHP Error was encountered

8 | 9 |

Severity:

10 |

Message:

11 |

Filename:

12 |

Line Number:

13 | 14 | 15 | 16 |

Backtrace:

17 | 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
-------------------------------------------------------------------------------- /vendor/gregwar/captcha/demo/form.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | Captcha is valid !"; 12 | } else { 13 | echo "

Captcha is not valid!

"; 14 | } 15 | // The phrase can't be used twice 16 | unset($_SESSION['phrase']); 17 | } 18 | ?> 19 |
20 | Copy the CAPTCHA: 21 | 25 | 26 | 27 | 28 |
29 | 30 | -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

An uncaught Exception was encountered

8 | 9 |

Type:

10 |

Message:

11 |

Filename: getFile(); ?>

12 |

Line Number: getLine(); ?>

13 | 14 | 15 | 16 |

Backtrace:

17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 |
-------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Alone88 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /vendor/symfony/finder/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2004-2019 Fabien Potencier 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is furnished 8 | to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) <2012-2017> Grégoire Passault 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is furnished 8 | to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Copyright (c) Nils Adermann, Jordi Boggiano 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is furnished 9 | to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all 12 | copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 20 | THE SOFTWARE. 21 | 22 | -------------------------------------------------------------------------------- /application/config/pagination.php: -------------------------------------------------------------------------------- 1 | '; 16 | $config['first_link'] ='首页'; 17 | // $config['first_tag_close'] = ''; 18 | 19 | //尾页标签 20 | 21 | // $config['last_tag_open'] = ''; 24 | 25 | //下一页标签 26 | /* $config['next_tag_open']='';*/ 29 | 30 | $config['cur_tag_open'] =''; 31 | $config['cur_tag_close']=''; 32 | 33 | /* $config['num_tag_open'] ='';*/ 35 | 36 | $config['attributes'] = array('class' => 'page-class'); -------------------------------------------------------------------------------- /application/controllers/Password.php: -------------------------------------------------------------------------------- 1 | config->load('hitokoto_conf'); 15 | $this->data['site_name'] = $this->config->item('site_name'); 16 | $this->data['csrf_name'] = $this->security->get_csrf_token_name(); 17 | $this->data['csrf_hash'] = $this->security->get_csrf_hash(); 18 | } 19 | public function reset(){ 20 | $this->data['page_title']='重置密码'; 21 | $this->load->view('user/reset',$this->data); 22 | } 23 | public function set(){ 24 | $repass = trim($this->input->get('repass')); 25 | $this->data['page_title']='重新设置密码'; 26 | $this->load->model('User_model'); 27 | $row = $this->User_model->query_pass($repass); 28 | if($row){ 29 | $this->data['set_pass']=$row; 30 | }else{ 31 | show_404(); 32 | } 33 | $this->load->view('user/set',$this->data); 34 | } 35 | } -------------------------------------------------------------------------------- /application/models/Api_model.php: -------------------------------------------------------------------------------- 1 | load->database(); 12 | //需要设置表的表前缀 13 | } 14 | 15 | public function Hitokoto($cat=null) 16 | { 17 | 18 | if($cat){ 19 | $query = $this->db->select('id,hitokoto,cat,catname,source,date,author') 20 | ->where('cat',$cat) 21 | ->where('id>=','(select floor(rand() * (select max(id) from lp_hitokoto)))') 22 | ->where('status',1) 23 | ->order_by('rand()') 24 | ->limit(1) 25 | ->get('hitokoto'); 26 | }else{ 27 | $query = $this->db->select('id,hitokoto,cat,catname,source,date,author') 28 | ->where('id>=','(select floor(rand() * (select max(id) from lp_hitokoto)))') 29 | ->where('status',1) 30 | ->order_by('rand()') 31 | ->limit(1) 32 | ->get('hitokoto'); 33 | } 34 | $row = $query->row_array(); 35 | $query->free_result(); 36 | return $row; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/Iterator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Tests\Iterator; 13 | 14 | class Iterator implements \Iterator 15 | { 16 | protected $values = []; 17 | 18 | public function __construct(array $values = []) 19 | { 20 | foreach ($values as $value) { 21 | $this->attach(new \SplFileInfo($value)); 22 | } 23 | $this->rewind(); 24 | } 25 | 26 | public function attach(\SplFileInfo $fileinfo) 27 | { 28 | $this->values[] = $fileinfo; 29 | } 30 | 31 | public function rewind() 32 | { 33 | reset($this->values); 34 | } 35 | 36 | public function valid() 37 | { 38 | return false !== $this->current(); 39 | } 40 | 41 | public function next() 42 | { 43 | next($this->values); 44 | } 45 | 46 | public function current() 47 | { 48 | return current($this->values); 49 | } 50 | 51 | public function key() 52 | { 53 | return key($this->values); 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/src/Exception.php: -------------------------------------------------------------------------------- 1 | 9 | * @author Jim Jagielski (jimjag) 10 | * @author Andy Prevost (codeworxtech) 11 | * @author Brent R. Matzelle (original founder) 12 | * @copyright 2012 - 2017 Marcus Bointon 13 | * @copyright 2010 - 2012 Jim Jagielski 14 | * @copyright 2004 - 2009 Andy Prevost 15 | * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License 16 | * @note This program is distributed in the hope that it will be useful - WITHOUT 17 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 18 | * FITNESS FOR A PARTICULAR PURPOSE. 19 | */ 20 | 21 | namespace PHPMailer\PHPMailer; 22 | 23 | /** 24 | * PHPMailer exception handler. 25 | * 26 | * @author Marcus Bointon 27 | */ 28 | class Exception extends \Exception 29 | { 30 | /** 31 | * Prettify error message output. 32 | * 33 | * @return string 34 | */ 35 | public function errorMessage() 36 | { 37 | return '' . htmlspecialchars($this->getMessage()) . "
\n"; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/FilenameFilterIterator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Iterator; 13 | 14 | use Symfony\Component\Finder\Glob; 15 | 16 | /** 17 | * FilenameFilterIterator filters files by patterns (a regexp, a glob, or a string). 18 | * 19 | * @author Fabien Potencier 20 | */ 21 | class FilenameFilterIterator extends MultiplePcreFilterIterator 22 | { 23 | /** 24 | * Filters the iterator values. 25 | * 26 | * @return bool true if the value should be kept, false otherwise 27 | */ 28 | public function accept() 29 | { 30 | return $this->isAccepted($this->current()->getFilename()); 31 | } 32 | 33 | /** 34 | * Converts glob to regexp. 35 | * 36 | * PCRE patterns are left unchanged. 37 | * Glob strings are transformed with Glob::toRegex(). 38 | * 39 | * @param string $str Pattern: glob or regexp 40 | * 41 | * @return string regexp corresponding to a given glob or regexp 42 | */ 43 | protected function toRegex($str) 44 | { 45 | return $this->isRegex($str) ? $str : Glob::toRegex($str); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/CustomFilterIteratorTest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Tests\Iterator; 13 | 14 | use Symfony\Component\Finder\Iterator\CustomFilterIterator; 15 | 16 | class CustomFilterIteratorTest extends IteratorTestCase 17 | { 18 | /** 19 | * @expectedException \InvalidArgumentException 20 | */ 21 | public function testWithInvalidFilter() 22 | { 23 | new CustomFilterIterator(new Iterator(), ['foo']); 24 | } 25 | 26 | /** 27 | * @dataProvider getAcceptData 28 | */ 29 | public function testAccept($filters, $expected) 30 | { 31 | $inner = new Iterator(['test.php', 'test.py', 'foo.php']); 32 | 33 | $iterator = new CustomFilterIterator($inner, $filters); 34 | 35 | $this->assertIterator($expected, $iterator); 36 | } 37 | 38 | public function getAcceptData() 39 | { 40 | return [ 41 | [[function (\SplFileInfo $fileinfo) { return false; }], []], 42 | [[function (\SplFileInfo $fileinfo) { return 0 === strpos($fileinfo, 'test'); }], ['test.php', 'test.py']], 43 | [['is_dir'], []], 44 | ]; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/DepthRangeFilterIterator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Iterator; 13 | 14 | /** 15 | * DepthRangeFilterIterator limits the directory depth. 16 | * 17 | * @author Fabien Potencier 18 | */ 19 | class DepthRangeFilterIterator extends \FilterIterator 20 | { 21 | private $minDepth = 0; 22 | 23 | /** 24 | * @param \RecursiveIteratorIterator $iterator The Iterator to filter 25 | * @param int $minDepth The min depth 26 | * @param int $maxDepth The max depth 27 | */ 28 | public function __construct(\RecursiveIteratorIterator $iterator, int $minDepth = 0, int $maxDepth = PHP_INT_MAX) 29 | { 30 | $this->minDepth = $minDepth; 31 | $iterator->setMaxDepth(PHP_INT_MAX === $maxDepth ? -1 : $maxDepth); 32 | 33 | parent::__construct($iterator); 34 | } 35 | 36 | /** 37 | * Filters the iterator values. 38 | * 39 | * @return bool true if the value should be kept, false otherwise 40 | */ 41 | public function accept() 42 | { 43 | return $this->getInnerIterator()->getDepth() >= $this->minDepth; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- 1 | 6 | * @author young 7 | * @author Teddysun 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:登录失败。'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP 错误:无法连接到 SMTP 主机。'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误:数据不被接受。'; 13 | $PHPMAILER_LANG['empty_message'] = '邮件正文为空。'; 14 | $PHPMAILER_LANG['encoding'] = '未知编码:'; 15 | $PHPMAILER_LANG['execute'] = '无法执行:'; 16 | $PHPMAILER_LANG['file_access'] = '无法访问文件:'; 17 | $PHPMAILER_LANG['file_open'] = '文件错误:无法打开文件:'; 18 | $PHPMAILER_LANG['from_failed'] = '发送地址错误:'; 19 | $PHPMAILER_LANG['instantiate'] = '未知函数调用。'; 20 | $PHPMAILER_LANG['invalid_address'] = '发送失败,电子邮箱地址是无效的:'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = '发信客户端不被支持。'; 22 | $PHPMAILER_LANG['provide_address'] = '必须提供至少一个收件人地址。'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误:收件人地址错误:'; 24 | $PHPMAILER_LANG['signing'] = '登录失败:'; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP服务器连接失败。'; 26 | $PHPMAILER_LANG['smtp_error'] = 'SMTP服务器出错:'; 27 | $PHPMAILER_LANG['variable_set'] = '无法设置或重置变量:'; 28 | $PHPMAILER_LANG['extension_missing'] = '丢失模块 Extension:'; 29 | -------------------------------------------------------------------------------- /application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Error 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- 1 | 11 | array ( 12 | 'Symfony\\Component\\Finder\\' => 25, 13 | ), 14 | 'P' => 15 | array ( 16 | 'PHPMailer\\PHPMailer\\' => 20, 17 | ), 18 | 'G' => 19 | array ( 20 | 'Gregwar\\' => 8, 21 | ), 22 | ); 23 | 24 | public static $prefixDirsPsr4 = array ( 25 | 'Symfony\\Component\\Finder\\' => 26 | array ( 27 | 0 => __DIR__ . '/..' . '/symfony/finder', 28 | ), 29 | 'PHPMailer\\PHPMailer\\' => 30 | array ( 31 | 0 => __DIR__ . '/..' . '/phpmailer/phpmailer/src', 32 | ), 33 | 'Gregwar\\' => 34 | array ( 35 | 0 => __DIR__ . '/..' . '/gregwar/captcha/src/Gregwar', 36 | ), 37 | ); 38 | 39 | public static function getInitializer(ClassLoader $loader) 40 | { 41 | return \Closure::bind(function () use ($loader) { 42 | $loader->prefixLengthsPsr4 = ComposerStaticInita7044ddbb71c4f49f0b05bae1d9095cd::$prefixLengthsPsr4; 43 | $loader->prefixDirsPsr4 = ComposerStaticInita7044ddbb71c4f49f0b05bae1d9095cd::$prefixDirsPsr4; 44 | 45 | }, null, ClassLoader::class); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Database Error 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /vendor/gregwar/captcha/src/Gregwar/Captcha/PhraseBuilder.php: -------------------------------------------------------------------------------- 1 | 9 | */ 10 | class PhraseBuilder implements PhraseBuilderInterface 11 | { 12 | /** 13 | * @var int 14 | */ 15 | public $length; 16 | 17 | /** 18 | * @var string 19 | */ 20 | public $charset; 21 | /** 22 | * Constructs a PhraseBuilder with given parameters 23 | */ 24 | public function __construct($length = 5, $charset = 'abcdefghijklmnpqrstuvwxyz123456789') 25 | { 26 | $this->length = $length; 27 | $this->charset = $charset; 28 | } 29 | 30 | /** 31 | * Generates random phrase of given length with given charset 32 | */ 33 | public function build($length = null, $charset = null) 34 | { 35 | if ($length !== null) { 36 | $this->length = $length; 37 | } 38 | if ($charset !== null) { 39 | $this->charset = $charset; 40 | } 41 | 42 | $phrase = ''; 43 | $chars = str_split($this->charset); 44 | 45 | for ($i = 0; $i < $this->length; $i++) { 46 | $phrase .= $chars[array_rand($chars)]; 47 | } 48 | 49 | return $phrase; 50 | } 51 | 52 | /** 53 | * "Niceize" a code 54 | */ 55 | public function niceize($str) 56 | { 57 | return strtr(strtolower($str), '01', 'ol'); 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /application/helpers/redis_helper.php: -------------------------------------------------------------------------------- 1 | connect('127.0.0.1', 6379)){ 10 | return false; 11 | } 12 | 13 | //这个key记录该ip的访问次数 也可改成用户id 14 | $key=get_real_ip(); 15 | // 限制访问次数 16 | $limit = $sum; 17 | $check = $redis->exists($key); 18 | if($check){ 19 | $redis->incr($key); 20 | $count = $redis->get($key); 21 | if($count > $limit){ 22 | return true; 23 | } 24 | }else{ 25 | $redis->incr($key); 26 | //限制时间为多少秒 27 | $redis->expire($key,$time); 28 | } 29 | } 30 | 31 | 32 | //获取客户端真实ip地址 33 | function get_real_ip(){ 34 | static $realip; 35 | if(isset($_SERVER)){ 36 | if(isset($_SERVER['HTTP_X_FORWARDED_FOR'])){ 37 | $realip=$_SERVER['HTTP_X_FORWARDED_FOR']; 38 | }else if(isset($_SERVER['HTTP_CLIENT_IP'])){ 39 | $realip=$_SERVER['HTTP_CLIENT_IP']; 40 | }else{ 41 | $realip=$_SERVER['REMOTE_ADDR']; 42 | } 43 | }else{ 44 | if(getenv('HTTP_X_FORWARDED_FOR')){ 45 | $realip=getenv('HTTP_X_FORWARDED_FOR'); 46 | }else if(getenv('HTTP_CLIENT_IP')){ 47 | $realip=getenv('HTTP_CLIENT_IP'); 48 | }else{ 49 | $realip=getenv('REMOTE_ADDR'); 50 | } 51 | } 52 | return $realip; 53 | } -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 404 Page Not Found 8 | 57 | 58 | 59 |
60 |

61 | 62 |
63 | 64 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP 错误:身份验证失败。'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP 错误: 不能连接SMTP主机。'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 错误: 数据不可接受。'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = '未知编码:'; 13 | $PHPMAILER_LANG['execute'] = '不能执行: '; 14 | $PHPMAILER_LANG['file_access'] = '不能访问文件:'; 15 | $PHPMAILER_LANG['file_open'] = '文件错误:不能打开文件:'; 16 | $PHPMAILER_LANG['from_failed'] = '下面的发送地址邮件发送失败了: '; 17 | $PHPMAILER_LANG['instantiate'] = '不能实现mail方法。'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' 您所选择的发送邮件的方法并不支持。'; 20 | $PHPMAILER_LANG['provide_address'] = '您必须提供至少一个 收信人的email地址。'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 错误: 下面的 收件人失败了: '; 22 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 23 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 25 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Peter Dave Hello <@PeterDaveHello/> 7 | * @author Jason Chiang 8 | */ 9 | 10 | $PHPMAILER_LANG['authenticate'] = 'SMTP 錯誤:登入失敗。'; 11 | $PHPMAILER_LANG['connect_host'] = 'SMTP 錯誤:無法連線到 SMTP 主機。'; 12 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 錯誤:無法接受的資料。'; 13 | $PHPMAILER_LANG['empty_message'] = '郵件內容為空'; 14 | $PHPMAILER_LANG['encoding'] = '未知編碼: '; 15 | $PHPMAILER_LANG['execute'] = '無法執行:'; 16 | $PHPMAILER_LANG['file_access'] = '無法存取檔案:'; 17 | $PHPMAILER_LANG['file_open'] = '檔案錯誤:無法開啟檔案:'; 18 | $PHPMAILER_LANG['from_failed'] = '發送地址錯誤:'; 19 | $PHPMAILER_LANG['instantiate'] = '未知函數呼叫。'; 20 | $PHPMAILER_LANG['invalid_address'] = '因為電子郵件地址無效,無法傳送: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = '不支援的發信客戶端。'; 22 | $PHPMAILER_LANG['provide_address'] = '必須提供至少一個收件人地址。'; 23 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 錯誤:以下收件人地址錯誤:'; 24 | $PHPMAILER_LANG['signing'] = '電子簽章錯誤: '; 25 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 連線失敗'; 26 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 伺服器錯誤: '; 27 | $PHPMAILER_LANG['variable_set'] = '無法設定或重設變數: '; 28 | $PHPMAILER_LANG['extension_missing'] = '遺失模組 Extension: '; 29 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP 오류: 인증할 수 없습니다.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP 오류: SMTP 호스트에 접속할 수 없습니다.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP 오류: 데이터가 받아들여지지 않았습니다.'; 11 | $PHPMAILER_LANG['empty_message'] = '메세지 내용이 없습니다'; 12 | $PHPMAILER_LANG['encoding'] = '알 수 없는 인코딩: '; 13 | $PHPMAILER_LANG['execute'] = '실행 불가: '; 14 | $PHPMAILER_LANG['file_access'] = '파일 접근 불가: '; 15 | $PHPMAILER_LANG['file_open'] = '파일 오류: 파일을 열 수 없습니다: '; 16 | $PHPMAILER_LANG['from_failed'] = '다음 From 주소에서 오류가 발생했습니다: '; 17 | $PHPMAILER_LANG['instantiate'] = 'mail 함수를 인스턴스화할 수 없습니다'; 18 | $PHPMAILER_LANG['invalid_address'] = '잘못된 주소: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' 메일러는 지원되지 않습니다.'; 20 | $PHPMAILER_LANG['provide_address'] = '적어도 한 개 이상의 수신자 메일 주소를 제공해야 합니다.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP 오류: 다음 수신자에서 오류가 발생했습니다: '; 22 | $PHPMAILER_LANG['signing'] = '서명 오류: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP 연결을 실패하였습니다.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP 서버 오류: '; 25 | $PHPMAILER_LANG['variable_set'] = '변수 설정 및 초기화 불가: '; 26 | $PHPMAILER_LANG['extension_missing'] = '확장자 없음: '; 27 | -------------------------------------------------------------------------------- /application/views/home.php: -------------------------------------------------------------------------------- 1 | load->view('comm/header', $this->data); 4 | ?> 5 |
6 |
7 |
8 |
9 |
在天原作比翼鸟,在地愿为连理枝。
10 |
11 |
- 「白居易 」
12 |
13 |
14 |
15 | 16 | load->view('comm/footer')?> 17 | 42 | -------------------------------------------------------------------------------- /application/views/user/reset.php: -------------------------------------------------------------------------------- 1 | load->view('comm/header', $this->data); 10 | ?> 11 | 12 |
13 |
14 |
16 |
17 |

忘记密码

18 |
19 |
20 |
21 |
22 | 23 | 24 | 请输入有效的邮件地址 25 |
26 | 29 |
30 |
31 |
32 |
33 | load->view('comm/footer') ?> 34 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/FileTypeFilterIterator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Iterator; 13 | 14 | /** 15 | * FileTypeFilterIterator only keeps files, directories, or both. 16 | * 17 | * @author Fabien Potencier 18 | */ 19 | class FileTypeFilterIterator extends \FilterIterator 20 | { 21 | const ONLY_FILES = 1; 22 | const ONLY_DIRECTORIES = 2; 23 | 24 | private $mode; 25 | 26 | /** 27 | * @param \Iterator $iterator The Iterator to filter 28 | * @param int $mode The mode (self::ONLY_FILES or self::ONLY_DIRECTORIES) 29 | */ 30 | public function __construct(\Iterator $iterator, int $mode) 31 | { 32 | $this->mode = $mode; 33 | 34 | parent::__construct($iterator); 35 | } 36 | 37 | /** 38 | * Filters the iterator values. 39 | * 40 | * @return bool true if the value should be kept, false otherwise 41 | */ 42 | public function accept() 43 | { 44 | $fileinfo = $this->current(); 45 | if (self::ONLY_DIRECTORIES === (self::ONLY_DIRECTORIES & $this->mode) && $fileinfo->isFile()) { 46 | return false; 47 | } elseif (self::ONLY_FILES === (self::ONLY_FILES & $this->mode) && $fileinfo->isDir()) { 48 | return false; 49 | } 50 | 51 | return true; 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-he.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'שגיאת SMTP: פעולת האימות נכשלה.'; 9 | $PHPMAILER_LANG['connect_host'] = 'שגיאת SMTP: לא הצלחתי להתחבר לשרת SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'שגיאת SMTP: מידע לא התקבל.'; 11 | $PHPMAILER_LANG['empty_message'] = 'גוף ההודעה ריק'; 12 | $PHPMAILER_LANG['invalid_address'] = 'כתובת שגויה: '; 13 | $PHPMAILER_LANG['encoding'] = 'קידוד לא מוכר: '; 14 | $PHPMAILER_LANG['execute'] = 'לא הצלחתי להפעיל את: '; 15 | $PHPMAILER_LANG['file_access'] = 'לא ניתן לגשת לקובץ: '; 16 | $PHPMAILER_LANG['file_open'] = 'שגיאת קובץ: לא ניתן לגשת לקובץ: '; 17 | $PHPMAILER_LANG['from_failed'] = 'כתובות הנמענים הבאות נכשלו: '; 18 | $PHPMAILER_LANG['instantiate'] = 'לא הצלחתי להפעיל את פונקציית המייל.'; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' אינה נתמכת.'; 20 | $PHPMAILER_LANG['provide_address'] = 'חובה לספק לפחות כתובת אחת של מקבל המייל.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'שגיאת SMTP: הנמענים הבאים נכשלו: '; 22 | $PHPMAILER_LANG['signing'] = 'שגיאת חתימה: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'שגיאת שרת SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'לא ניתן לקבוע או לשנות את המשתנה: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Yoshi Sakai 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTPエラー: 認証できませんでした。'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTPエラー: SMTPホストに接続できませんでした。'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTPエラー: データが受け付けられませんでした。'; 12 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 13 | $PHPMAILER_LANG['encoding'] = '不明なエンコーディング: '; 14 | $PHPMAILER_LANG['execute'] = '実行できませんでした: '; 15 | $PHPMAILER_LANG['file_access'] = 'ファイルにアクセスできません: '; 16 | $PHPMAILER_LANG['file_open'] = 'ファイルエラー: ファイルを開けません: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Fromアドレスを登録する際にエラーが発生しました: '; 18 | $PHPMAILER_LANG['instantiate'] = 'メール関数が正常に動作しませんでした。'; 19 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 20 | $PHPMAILER_LANG['provide_address'] = '少なくとも1つメールアドレスを 指定する必要があります。'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' メーラーがサポートされていません。'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTPエラー: 次の受信者アドレスに 間違いがあります: '; 23 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 24 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 25 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 26 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-nb.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Tests\Iterator; 13 | 14 | use Symfony\Component\Finder\Iterator\FilenameFilterIterator; 15 | 16 | class FilenameFilterIteratorTest extends IteratorTestCase 17 | { 18 | /** 19 | * @dataProvider getAcceptData 20 | */ 21 | public function testAccept($matchPatterns, $noMatchPatterns, $expected) 22 | { 23 | $inner = new InnerNameIterator(['test.php', 'test.py', 'foo.php']); 24 | 25 | $iterator = new FilenameFilterIterator($inner, $matchPatterns, $noMatchPatterns); 26 | 27 | $this->assertIterator($expected, $iterator); 28 | } 29 | 30 | public function getAcceptData() 31 | { 32 | return [ 33 | [['test.*'], [], ['test.php', 'test.py']], 34 | [[], ['test.*'], ['foo.php']], 35 | [['*.php'], ['test.*'], ['foo.php']], 36 | [['*.php', '*.py'], ['foo.*'], ['test.php', 'test.py']], 37 | [['/\.php$/'], [], ['test.php', 'foo.php']], 38 | [[], ['/\.php$/'], ['test.py']], 39 | ]; 40 | } 41 | } 42 | 43 | class InnerNameIterator extends \ArrayIterator 44 | { 45 | public function current() 46 | { 47 | return new \SplFileInfo(parent::current()); 48 | } 49 | 50 | public function getFilename() 51 | { 52 | return parent::current(); 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Comparator/DateComparator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Comparator; 13 | 14 | /** 15 | * DateCompare compiles date comparisons. 16 | * 17 | * @author Fabien Potencier 18 | */ 19 | class DateComparator extends Comparator 20 | { 21 | /** 22 | * @param string $test A comparison string 23 | * 24 | * @throws \InvalidArgumentException If the test is not understood 25 | */ 26 | public function __construct(string $test) 27 | { 28 | if (!preg_match('#^\s*(==|!=|[<>]=?|after|since|before|until)?\s*(.+?)\s*$#i', $test, $matches)) { 29 | throw new \InvalidArgumentException(sprintf('Don\'t understand "%s" as a date test.', $test)); 30 | } 31 | 32 | try { 33 | $date = new \DateTime($matches[2]); 34 | $target = $date->format('U'); 35 | } catch (\Exception $e) { 36 | throw new \InvalidArgumentException(sprintf('"%s" is not a valid date.', $matches[2])); 37 | } 38 | 39 | $operator = isset($matches[1]) ? $matches[1] : '=='; 40 | if ('since' === $operator || 'after' === $operator) { 41 | $operator = '>'; 42 | } 43 | 44 | if ('until' === $operator || 'before' === $operator) { 45 | $operator = '<'; 46 | } 47 | 48 | $this->setOperator($operator); 49 | $this->setTarget($target); 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/SizeRangeFilterIterator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Iterator; 13 | 14 | use Symfony\Component\Finder\Comparator\NumberComparator; 15 | 16 | /** 17 | * SizeRangeFilterIterator filters out files that are not in the given size range. 18 | * 19 | * @author Fabien Potencier 20 | */ 21 | class SizeRangeFilterIterator extends \FilterIterator 22 | { 23 | private $comparators = []; 24 | 25 | /** 26 | * @param \Iterator $iterator The Iterator to filter 27 | * @param NumberComparator[] $comparators An array of NumberComparator instances 28 | */ 29 | public function __construct(\Iterator $iterator, array $comparators) 30 | { 31 | $this->comparators = $comparators; 32 | 33 | parent::__construct($iterator); 34 | } 35 | 36 | /** 37 | * Filters the iterator values. 38 | * 39 | * @return bool true if the value should be kept, false otherwise 40 | */ 41 | public function accept() 42 | { 43 | $fileinfo = $this->current(); 44 | if (!$fileinfo->isFile()) { 45 | return true; 46 | } 47 | 48 | $filesize = $fileinfo->getSize(); 49 | foreach ($this->comparators as $compare) { 50 | if (!$compare->test($filesize)) { 51 | return false; 52 | } 53 | } 54 | 55 | return true; 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-cs.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP kļūda: Autorizācija neizdevās.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Kļūda: Nevar izveidot savienojumu ar SMTP serveri.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Kļūda: Nepieņem informāciju.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Ziņojuma teksts ir tukšs'; 12 | $PHPMAILER_LANG['encoding'] = 'Neatpazīts kodējums: '; 13 | $PHPMAILER_LANG['execute'] = 'Neizdevās izpildīt komandu: '; 14 | $PHPMAILER_LANG['file_access'] = 'Fails nav pieejams: '; 15 | $PHPMAILER_LANG['file_open'] = 'Faila kļūda: Nevar atvērt failu: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Nepareiza sūtītāja adrese: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Nevar palaist sūtīšanas funkciju.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Nepareiza adrese: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' sūtītājs netiek atbalstīts.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Lūdzu, norādiet vismaz vienu adresātu.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP kļūda: neizdevās nosūtīt šādiem saņēmējiem: '; 22 | $PHPMAILER_LANG['signing'] = 'Autorizācijas kļūda: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP savienojuma kļūda'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP servera kļūda: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nevar piešķirt mainīgā vērtību: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sv.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP fel: Kunde inte autentisera.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP fel: Kunde inte ansluta till SMTP-server.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fel: Data accepterades inte.'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = 'Okänt encode-format: '; 13 | $PHPMAILER_LANG['execute'] = 'Kunde inte köra: '; 14 | $PHPMAILER_LANG['file_access'] = 'Ingen åtkomst till fil: '; 15 | $PHPMAILER_LANG['file_open'] = 'Fil fel: Kunde inte öppna fil: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Följande avsändaradress är felaktig: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kunde inte initiera e-postfunktion.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Felaktig adress: '; 19 | $PHPMAILER_LANG['provide_address'] = 'Du måste ange minst en mottagares e-postadress.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer stöds inte.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fel: Följande mottagare är felaktig: '; 22 | $PHPMAILER_LANG['signing'] = 'Signerings fel: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() misslyckades.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP server fel: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Kunde inte definiera eller återställa variabel: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Tillägg ej tillgängligt: '; 27 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/PathFilterIterator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Iterator; 13 | 14 | /** 15 | * PathFilterIterator filters files by path patterns (e.g. some/special/dir). 16 | * 17 | * @author Fabien Potencier 18 | * @author Włodzimierz Gajda 19 | */ 20 | class PathFilterIterator extends MultiplePcreFilterIterator 21 | { 22 | /** 23 | * Filters the iterator values. 24 | * 25 | * @return bool true if the value should be kept, false otherwise 26 | */ 27 | public function accept() 28 | { 29 | $filename = $this->current()->getRelativePathname(); 30 | 31 | if ('\\' === \DIRECTORY_SEPARATOR) { 32 | $filename = str_replace('\\', '/', $filename); 33 | } 34 | 35 | return $this->isAccepted($filename); 36 | } 37 | 38 | /** 39 | * Converts strings to regexp. 40 | * 41 | * PCRE patterns are left unchanged. 42 | * 43 | * Default conversion: 44 | * 'lorem/ipsum/dolor' ==> 'lorem\/ipsum\/dolor/' 45 | * 46 | * Use only / as directory separator (on Windows also). 47 | * 48 | * @param string $str Pattern: regexp or dirname 49 | * 50 | * @return string regexp corresponding to a given string or regexp 51 | */ 52 | protected function toRegex($str) 53 | { 54 | return $this->isRegex($str) ? $str : '/'.preg_quote($str, '/').'/'; 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-da.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP fejl: Kunne ikke logge på.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP fejl: Kunne ikke tilslutte SMTP serveren.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP fejl: Data kunne ikke accepteres.'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = 'Ukendt encode-format: '; 13 | $PHPMAILER_LANG['execute'] = 'Kunne ikke køre: '; 14 | $PHPMAILER_LANG['file_access'] = 'Ingen adgang til fil: '; 15 | $PHPMAILER_LANG['file_open'] = 'Fil fejl: Kunne ikke åbne filen: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Følgende afsenderadresse er forkert: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kunne ikke initialisere email funktionen.'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer understøttes ikke.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Du skal indtaste mindst en modtagers emailadresse.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP fejl: Følgende modtagere er forkerte: '; 22 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 23 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 25 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-vi.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Lỗi SMTP: Không thể xác thực.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Lỗi SMTP: Không thể kết nối máy chủ SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Lỗi SMTP: Dữ liệu không được chấp nhận.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Không có nội dung'; 12 | $PHPMAILER_LANG['encoding'] = 'Mã hóa không xác định: '; 13 | $PHPMAILER_LANG['execute'] = 'Không thực hiện được: '; 14 | $PHPMAILER_LANG['file_access'] = 'Không thể truy cập tệp tin '; 15 | $PHPMAILER_LANG['file_open'] = 'Lỗi Tập tin: Không thể mở tệp tin: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Lỗi địa chỉ gửi đi: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Không dùng được các hàm gửi thư.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Đại chỉ emai không đúng: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' trình gửi thư không được hỗ trợ.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Bạn phải cung cấp ít nhất một địa chỉ người nhận.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Lỗi SMTP: lỗi địa chỉ người nhận: '; 22 | $PHPMAILER_LANG['signing'] = 'Lỗi đăng nhập: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Lỗi kết nối với SMTP'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Lỗi máy chủ smtp '; 25 | $PHPMAILER_LANG['variable_set'] = 'Không thể thiết lập hoặc thiết lập lại biến: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP klaida: autentifikacija nepavyko.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP klaida: nepavyksta prisijungti prie SMTP stoties.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP klaida: duomenys nepriimti.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Laiško turinys tuščias'; 12 | $PHPMAILER_LANG['encoding'] = 'Neatpažinta koduotė: '; 13 | $PHPMAILER_LANG['execute'] = 'Nepavyko įvykdyti komandos: '; 14 | $PHPMAILER_LANG['file_access'] = 'Byla nepasiekiama: '; 15 | $PHPMAILER_LANG['file_open'] = 'Bylos klaida: Nepavyksta atidaryti: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Neteisingas siuntėjo adresas: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Nepavyko paleisti mail funkcijos.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Neteisingas adresas: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' pašto stotis nepalaikoma.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Nurodykite bent vieną gavėjo adresą.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP klaida: nepavyko išsiųsti šiems gavėjams: '; 22 | $PHPMAILER_LANG['signing'] = 'Prisijungimo klaida: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP susijungimo klaida'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP stoties klaida: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nepavyko priskirti reikšmės kintamajam: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-nl.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP-fout: authenticatie mislukt.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP-fout: kon niet verbinden met SMTP-host.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP-fout: data niet geaccepteerd.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Berichttekst is leeg'; 12 | $PHPMAILER_LANG['encoding'] = 'Onbekende codering: '; 13 | $PHPMAILER_LANG['execute'] = 'Kon niet uitvoeren: '; 14 | $PHPMAILER_LANG['file_access'] = 'Kreeg geen toegang tot bestand: '; 15 | $PHPMAILER_LANG['file_open'] = 'Bestandsfout: kon bestand niet openen: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Het volgende afzendersadres is mislukt: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kon mailfunctie niet initialiseren.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Ongeldig adres: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer wordt niet ondersteund.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Er moet minstens één ontvanger worden opgegeven.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP-fout: de volgende ontvangers zijn mislukt: '; 22 | $PHPMAILER_LANG['signing'] = 'Signeerfout: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Verbinding mislukt.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP-serverfout: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Kan de volgende variabele niet instellen of resetten: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Extensie afwezig: '; 27 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/DateRangeFilterIterator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Iterator; 13 | 14 | use Symfony\Component\Finder\Comparator\DateComparator; 15 | 16 | /** 17 | * DateRangeFilterIterator filters out files that are not in the given date range (last modified dates). 18 | * 19 | * @author Fabien Potencier 20 | */ 21 | class DateRangeFilterIterator extends \FilterIterator 22 | { 23 | private $comparators = []; 24 | 25 | /** 26 | * @param \Iterator $iterator The Iterator to filter 27 | * @param DateComparator[] $comparators An array of DateComparator instances 28 | */ 29 | public function __construct(\Iterator $iterator, array $comparators) 30 | { 31 | $this->comparators = $comparators; 32 | 33 | parent::__construct($iterator); 34 | } 35 | 36 | /** 37 | * Filters the iterator values. 38 | * 39 | * @return bool true if the value should be kept, false otherwise 40 | */ 41 | public function accept() 42 | { 43 | $fileinfo = $this->current(); 44 | 45 | if (!file_exists($fileinfo->getPathname())) { 46 | return false; 47 | } 48 | 49 | $filedate = $fileinfo->getMTime(); 50 | foreach ($this->comparators as $compare) { 51 | if (!$compare->test($filedate)) { 52 | return false; 53 | } 54 | } 55 | 56 | return true; 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/FilecontentFilterIterator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Iterator; 13 | 14 | /** 15 | * FilecontentFilterIterator filters files by their contents using patterns (regexps or strings). 16 | * 17 | * @author Fabien Potencier 18 | * @author Włodzimierz Gajda 19 | */ 20 | class FilecontentFilterIterator extends MultiplePcreFilterIterator 21 | { 22 | /** 23 | * Filters the iterator values. 24 | * 25 | * @return bool true if the value should be kept, false otherwise 26 | */ 27 | public function accept() 28 | { 29 | if (!$this->matchRegexps && !$this->noMatchRegexps) { 30 | return true; 31 | } 32 | 33 | $fileinfo = $this->current(); 34 | 35 | if ($fileinfo->isDir() || !$fileinfo->isReadable()) { 36 | return false; 37 | } 38 | 39 | $content = $fileinfo->getContents(); 40 | if (!$content) { 41 | return false; 42 | } 43 | 44 | return $this->isAccepted($content); 45 | } 46 | 47 | /** 48 | * Converts string to regexp if necessary. 49 | * 50 | * @param string $str Pattern: string or regexp 51 | * 52 | * @return string regexp corresponding to a given string or regexp 53 | */ 54 | protected function toRegex($str) 55 | { 56 | return $this->isRegex($str) ? $str : '/'.preg_quote($str, '/').'/'; 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP feilur: Kundi ikki góðkenna.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP feilur: Kundi ikki knýta samband við SMTP vert.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP feilur: Data ikki góðkent.'; 11 | //$PHPMAILER_LANG['empty_message'] = 'Message body empty'; 12 | $PHPMAILER_LANG['encoding'] = 'Ókend encoding: '; 13 | $PHPMAILER_LANG['execute'] = 'Kundi ikki útføra: '; 14 | $PHPMAILER_LANG['file_access'] = 'Kundi ikki tilganga fílu: '; 15 | $PHPMAILER_LANG['file_open'] = 'Fílu feilur: Kundi ikki opna fílu: '; 16 | $PHPMAILER_LANG['from_failed'] = 'fylgjandi Frá/From adressa miseydnaðist: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Kuni ikki instantiera mail funktión.'; 18 | //$PHPMAILER_LANG['invalid_address'] = 'Invalid address: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' er ikki supporterað.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Tú skal uppgeva minst móttakara-emailadressu(r).'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Feilur: Fylgjandi móttakarar miseydnaðust: '; 22 | //$PHPMAILER_LANG['signing'] = 'Signing Error: '; 23 | //$PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() failed.'; 24 | //$PHPMAILER_LANG['smtp_error'] = 'SMTP server error: '; 25 | //$PHPMAILER_LANG['variable_set'] = 'Cannot set or reset variable: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-eo.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP त्रुटि: प्रामाणिकता की जांच नहीं हो सका। '; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP त्रुटि: SMTP सर्वर से कनेक्ट नहीं हो सका। '; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP त्रुटि: डेटा स्वीकार नहीं किया जाता है। '; 11 | $PHPMAILER_LANG['empty_message'] = 'संदेश खाली है। '; 12 | $PHPMAILER_LANG['encoding'] = 'अज्ञात एन्कोडिंग प्रकार। '; 13 | $PHPMAILER_LANG['execute'] = 'आदेश को निष्पादित करने में विफल। '; 14 | $PHPMAILER_LANG['file_access'] = 'फ़ाइल उपलब्ध नहीं है। '; 15 | $PHPMAILER_LANG['file_open'] = 'फ़ाइल त्रुटि: फाइल को खोला नहीं जा सका। '; 16 | $PHPMAILER_LANG['from_failed'] = 'प्रेषक का पता गलत है। '; 17 | $PHPMAILER_LANG['instantiate'] = 'मेल फ़ंक्शन कॉल नहीं कर सकता है।'; 18 | $PHPMAILER_LANG['invalid_address'] = 'पता गलत है। '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = 'मेल सर्वर के साथ काम नहीं करता है। '; 20 | $PHPMAILER_LANG['provide_address'] = 'आपको कम से कम एक प्राप्तकर्ता का ई-मेल पता प्रदान करना होगा।'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP त्रुटि: निम्न प्राप्तकर्ताओं को पते भेजने में विफल। '; 22 | $PHPMAILER_LANG['signing'] = 'साइनअप त्रुटि:। '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP का connect () फ़ंक्शन विफल हुआ। '; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP सर्वर त्रुटि। '; 25 | $PHPMAILER_LANG['variable_set'] = 'चर को बना या संशोधित नहीं किया जा सकता। '; 26 | $PHPMAILER_LANG['extension_missing'] = 'एक्सटेन्षन गायब है: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'خطأ SMTP : لا يمكن تأكيد الهوية.'; 9 | $PHPMAILER_LANG['connect_host'] = 'خطأ SMTP: لا يمكن الاتصال بالخادم SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'خطأ SMTP: لم يتم قبول المعلومات .'; 11 | $PHPMAILER_LANG['empty_message'] = 'نص الرسالة فارغ'; 12 | $PHPMAILER_LANG['encoding'] = 'ترميز غير معروف: '; 13 | $PHPMAILER_LANG['execute'] = 'لا يمكن تنفيذ : '; 14 | $PHPMAILER_LANG['file_access'] = 'لا يمكن الوصول للملف: '; 15 | $PHPMAILER_LANG['file_open'] = 'خطأ في الملف: لا يمكن فتحه: '; 16 | $PHPMAILER_LANG['from_failed'] = 'خطأ على مستوى عنوان المرسل : '; 17 | $PHPMAILER_LANG['instantiate'] = 'لا يمكن توفير خدمة البريد.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'الإرسال غير ممكن لأن عنوان البريد الإلكتروني غير صالح: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' برنامج الإرسال غير مدعوم.'; 20 | $PHPMAILER_LANG['provide_address'] = 'يجب توفير عنوان البريد الإلكتروني لمستلم واحد على الأقل.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'خطأ SMTP: الأخطاء التالية ' . 22 | 'فشل في الارسال لكل من : '; 23 | $PHPMAILER_LANG['signing'] = 'خطأ في التوقيع: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() غير ممكن.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'خطأ على مستوى الخادم SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'لا يمكن تعيين أو إعادة تعيين متغير: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'الإضافة غير موجودة: '; 28 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Iterator/CustomFilterIterator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Iterator; 13 | 14 | /** 15 | * CustomFilterIterator filters files by applying anonymous functions. 16 | * 17 | * The anonymous function receives a \SplFileInfo and must return false 18 | * to remove files. 19 | * 20 | * @author Fabien Potencier 21 | */ 22 | class CustomFilterIterator extends \FilterIterator 23 | { 24 | private $filters = []; 25 | 26 | /** 27 | * @param \Iterator $iterator The Iterator to filter 28 | * @param callable[] $filters An array of PHP callbacks 29 | * 30 | * @throws \InvalidArgumentException 31 | */ 32 | public function __construct(\Iterator $iterator, array $filters) 33 | { 34 | foreach ($filters as $filter) { 35 | if (!\is_callable($filter)) { 36 | throw new \InvalidArgumentException('Invalid PHP callback.'); 37 | } 38 | } 39 | $this->filters = $filters; 40 | 41 | parent::__construct($iterator); 42 | } 43 | 44 | /** 45 | * Filters the iterator values. 46 | * 47 | * @return bool true if the value should be kept, false otherwise 48 | */ 49 | public function accept() 50 | { 51 | $fileinfo = $this->current(); 52 | 53 | foreach ($this->filters as $filter) { 54 | if (false === $filter($fileinfo)) { 55 | return false; 56 | } 57 | } 58 | 59 | return true; 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Mohammad Hossein Mojtahedi 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'خطای SMTP: احراز هویت با شکست مواجه شد.'; 10 | $PHPMAILER_LANG['connect_host'] = 'خطای SMTP: اتصال به سرور SMTP برقرار نشد.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'خطای SMTP: داده‌ها نا‌درست هستند.'; 12 | $PHPMAILER_LANG['empty_message'] = 'بخش متن پیام خالی است.'; 13 | $PHPMAILER_LANG['encoding'] = 'کد‌گذاری نا‌شناخته: '; 14 | $PHPMAILER_LANG['execute'] = 'امکان اجرا وجود ندارد: '; 15 | $PHPMAILER_LANG['file_access'] = 'امکان دسترسی به فایل وجود ندارد: '; 16 | $PHPMAILER_LANG['file_open'] = 'خطای File: امکان بازکردن فایل وجود ندارد: '; 17 | $PHPMAILER_LANG['from_failed'] = 'آدرس فرستنده اشتباه است: '; 18 | $PHPMAILER_LANG['instantiate'] = 'امکان معرفی تابع ایمیل وجود ندارد.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'آدرس ایمیل معتبر نیست: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer پشتیبانی نمی‌شود.'; 21 | $PHPMAILER_LANG['provide_address'] = 'باید حداقل یک آدرس گیرنده وارد کنید.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'خطای SMTP: ارسال به آدرس گیرنده با خطا مواجه شد: '; 23 | $PHPMAILER_LANG['signing'] = 'خطا در امضا: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'خطا در اتصال به SMTP.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'خطا در SMTP Server: '; 26 | $PHPMAILER_LANG['variable_set'] = 'امکان ارسال یا ارسال مجدد متغیر‌ها وجود ندارد: '; 27 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-am.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP -ի սխալ: չհաջողվեց ստուգել իսկությունը.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP -ի սխալ: չհաջողվեց կապ հաստատել SMTP սերվերի հետ.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP -ի սխալ: տվյալները ընդունված չեն.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Հաղորդագրությունը դատարկ է'; 12 | $PHPMAILER_LANG['encoding'] = 'Կոդավորման անհայտ տեսակ: '; 13 | $PHPMAILER_LANG['execute'] = 'Չհաջողվեց իրականացնել հրամանը: '; 14 | $PHPMAILER_LANG['file_access'] = 'Ֆայլը հասանելի չէ: '; 15 | $PHPMAILER_LANG['file_open'] = 'Ֆայլի սխալ: ֆայլը չհաջողվեց բացել: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Ուղարկողի հետևյալ հասցեն սխալ է: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Հնարավոր չէ կանչել mail ֆունկցիան.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Հասցեն սխալ է: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' փոստային սերվերի հետ չի աշխատում.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Անհրաժեշտ է տրամադրել գոնե մեկ ստացողի e-mail հասցե.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP -ի սխալ: չի հաջողվել ուղարկել հետևյալ ստացողների հասցեներին: '; 22 | $PHPMAILER_LANG['signing'] = 'Ստորագրման սխալ: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP -ի connect() ֆունկցիան չի հաջողվել'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP սերվերի սխալ: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Չի հաջողվում ստեղծել կամ վերափոխել փոփոխականը: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Հավելվածը բացակայում է: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-be.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Памылка SMTP: памылка ідэнтыфікацыі.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Памылка SMTP: нельга ўстанавіць сувязь з SMTP-серверам.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Памылка SMTP: звесткі непрынятыя.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Пустое паведамленне.'; 12 | $PHPMAILER_LANG['encoding'] = 'Невядомая кадыроўка тэксту: '; 13 | $PHPMAILER_LANG['execute'] = 'Нельга выканаць каманду: '; 14 | $PHPMAILER_LANG['file_access'] = 'Няма доступу да файла: '; 15 | $PHPMAILER_LANG['file_open'] = 'Нельга адкрыць файл: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Няправільны адрас адпраўніка: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Нельга прымяніць функцыю mail().'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Нельга даслаць паведамленне, няправільны email атрымальніка: '; 19 | $PHPMAILER_LANG['provide_address'] = 'Запоўніце, калі ласка, правільны email атрымальніка.'; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' - паштовы сервер не падтрымліваецца.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Памылка SMTP: няправільныя атрымальнікі: '; 22 | $PHPMAILER_LANG['signing'] = 'Памылка подпісу паведамлення: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Памылка сувязі з SMTP-серверам.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Памылка SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Нельга ўстанавіць або перамяніць значэнне пераменнай: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-bg.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP грешка: Не може да се удостовери пред сървъра.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP грешка: Не може да се свърже с SMTP хоста.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: данните не са приети.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Съдържанието на съобщението е празно'; 12 | $PHPMAILER_LANG['encoding'] = 'Неизвестно кодиране: '; 13 | $PHPMAILER_LANG['execute'] = 'Не може да се изпълни: '; 14 | $PHPMAILER_LANG['file_access'] = 'Няма достъп до файл: '; 15 | $PHPMAILER_LANG['file_open'] = 'Файлова грешка: Не може да се отвори файл: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Следните адреси за подател са невалидни: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Не може да се инстанцира функцията mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Невалиден адрес: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' - пощенски сървър не се поддържа.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Трябва да предоставите поне един email адрес за получател.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: Следните адреси за Получател са невалидни: '; 22 | $PHPMAILER_LANG['signing'] = 'Грешка при подписване: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP провален connect().'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP сървърна грешка: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Не може да се установи или възстанови променлива: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Липсва разширение: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Error SMTP: No s’ha pogut autenticar.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Error SMTP: No es pot connectar al servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Dades no acceptades.'; 11 | $PHPMAILER_LANG['empty_message'] = 'El cos del missatge està buit.'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificació desconeguda: '; 13 | $PHPMAILER_LANG['execute'] = 'No es pot executar: '; 14 | $PHPMAILER_LANG['file_access'] = 'No es pot accedir a l’arxiu: '; 15 | $PHPMAILER_LANG['file_open'] = 'Error d’Arxiu: No es pot obrir l’arxiu: '; 16 | $PHPMAILER_LANG['from_failed'] = 'La(s) següent(s) adreces de remitent han fallat: '; 17 | $PHPMAILER_LANG['instantiate'] = 'No s’ha pogut crear una instància de la funció Mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Adreça d’email invalida: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no està suportat'; 20 | $PHPMAILER_LANG['provide_address'] = 'S’ha de proveir almenys una adreça d’email com a destinatari.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Els següents destinataris han fallat: '; 22 | $PHPMAILER_LANG['signing'] = 'Error al signar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ha fallat el SMTP Connect().'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'No s’ha pogut establir o restablir la variable: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-tl.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Hindi mapatotohanan.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Hindi makakonekta sa SMTP host.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Ang datos ay hindi maaaring matatanggap.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Walang laman ang mensahe'; 13 | $PHPMAILER_LANG['encoding'] = 'Hindi alam ang encoding: '; 14 | $PHPMAILER_LANG['execute'] = 'Hindi maisasagawa: '; 15 | $PHPMAILER_LANG['file_access'] = 'Hindi ma-access ang file: '; 16 | $PHPMAILER_LANG['file_open'] = 'Hindi mabuksan ang file: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Ang sumusunod na address ay nabigo: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Hindi maaaring magbigay ng institusyon ang mail'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Hindi wasto ang address na naibigay: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = 'Ang mailer ay hindi suportado'; 21 | $PHPMAILER_LANG['provide_address'] = 'Kailangan mong magbigay ng kahit isang email address na tatanggap'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Ang mga sumusunod na tatanggap ay nabigo: '; 23 | $PHPMAILER_LANG['signing'] = 'Hindi ma-sign'; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ang SMTP connect() ay nabigo'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Ang server ng SMTP ay nabigo'; 26 | $PHPMAILER_LANG['variable_set'] = 'Hindi matatakda ang mga variables: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Nawawala ang extension'; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Error SMTP: Imposible autentificar.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Error SMTP: Imposible conectar al servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Error SMTP: Datos no aceptados.'; 11 | $PHPMAILER_LANG['empty_message'] = 'El cuerpo del mensaje está vacío.'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificación desconocida: '; 13 | $PHPMAILER_LANG['execute'] = 'Imposible ejecutar: '; 14 | $PHPMAILER_LANG['file_access'] = 'Imposible acceder al archivo: '; 15 | $PHPMAILER_LANG['file_open'] = 'Error de Archivo: Imposible abrir el archivo: '; 16 | $PHPMAILER_LANG['from_failed'] = 'La(s) siguiente(s) direcciones de remitente fallaron: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Imposible crear una instancia de la función Mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Imposible enviar: dirección de email inválido: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer no está soportado.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Debe proporcionar al menos una dirección de email de destino.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Error SMTP: Los siguientes destinos fallaron: '; 22 | $PHPMAILER_LANG['signing'] = 'Error al firmar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falló.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Error del servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'No se pudo configurar la variable: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Extensión faltante: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ba.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela prijava.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Nije moguće spojiti se sa SMTP serverom.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; 12 | $PHPMAILER_LANG['encoding'] = 'Nepoznata kriptografija: '; 13 | $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; 15 | $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; 16 | $PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje sa navedenih e-mail adresa nije uspjelo: '; 17 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedene e-mail adrese nije uspjelo: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Definišite barem jednu adresu primaoca.'; 22 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP server nije uspjelo.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP greška: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nije moguće postaviti varijablu ili je vratiti nazad: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje ekstenzija: '; -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Peter Orlický 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Chyba autentifikácie.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Nebolo možné nadviazať spojenie so SMTP serverom.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dáta neboli prijaté'; 12 | $PHPMAILER_LANG['empty_message'] = 'Prázdne telo správy.'; 13 | $PHPMAILER_LANG['encoding'] = 'Neznáme kódovanie: '; 14 | $PHPMAILER_LANG['execute'] = 'Nedá sa vykonať: '; 15 | $PHPMAILER_LANG['file_access'] = 'Súbor nebol nájdený: '; 16 | $PHPMAILER_LANG['file_open'] = 'File Error: Súbor sa otvoriť pre čítanie: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Následujúca adresa From je nesprávna: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Nedá sa vytvoriť inštancia emailovej funkcie.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Neodoslané, emailová adresa je nesprávna: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' emailový klient nieje podporovaný.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Musíte zadať aspoň jednu emailovú adresu príjemcu.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Adresy príjemcov niesu správne '; 23 | $PHPMAILER_LANG['signing'] = 'Chyba prihlasovania: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() zlyhalo.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP chyba serveru: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Nemožno nastaviť alebo resetovať premennú: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Chýba rozšírenie: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-et.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Viga: Autoriseerimise viga.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Viga: Ei õnnestunud luua ühendust SMTP serveriga.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Viga: Vigased andmed.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Tühi kirja sisu'; 13 | $PHPMAILER_LANG["encoding"] = 'Tundmatu kodeering: '; 14 | $PHPMAILER_LANG['execute'] = 'Tegevus ebaõnnestus: '; 15 | $PHPMAILER_LANG['file_access'] = 'Pole piisavalt õiguseid järgneva faili avamiseks: '; 16 | $PHPMAILER_LANG['file_open'] = 'Faili Viga: Faili avamine ebaõnnestus: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Järgnev saatja e-posti aadress on vigane: '; 18 | $PHPMAILER_LANG['instantiate'] = 'mail funktiooni käivitamine ebaõnnestus.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Saatmine peatatud, e-posti address vigane: '; 20 | $PHPMAILER_LANG['provide_address'] = 'Te peate määrama vähemalt ühe saaja e-posti aadressi.'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' maileri tugi puudub.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Viga: Järgnevate saajate e-posti aadressid on vigased: '; 23 | $PHPMAILER_LANG["signing"] = 'Viga allkirjastamisel: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() ebaõnnestus.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'SMTP serveri viga: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Ei õnnestunud määrata või lähtestada muutujat: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Nõutud laiendus on puudu: '; 28 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/RecursiveDirectoryIteratorTest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Tests\Iterator; 13 | 14 | use Symfony\Component\Finder\Iterator\RecursiveDirectoryIterator; 15 | 16 | class RecursiveDirectoryIteratorTest extends IteratorTestCase 17 | { 18 | /** 19 | * @group network 20 | */ 21 | public function testRewindOnFtp() 22 | { 23 | try { 24 | $i = new RecursiveDirectoryIterator('ftp://speedtest.tele2.net/', \RecursiveDirectoryIterator::SKIP_DOTS); 25 | } catch (\UnexpectedValueException $e) { 26 | $this->markTestSkipped('Unsupported stream "ftp".'); 27 | } 28 | 29 | $i->rewind(); 30 | 31 | $this->assertTrue(true); 32 | } 33 | 34 | /** 35 | * @group network 36 | */ 37 | public function testSeekOnFtp() 38 | { 39 | try { 40 | $i = new RecursiveDirectoryIterator('ftp://speedtest.tele2.net/', \RecursiveDirectoryIterator::SKIP_DOTS); 41 | } catch (\UnexpectedValueException $e) { 42 | $this->markTestSkipped('Unsupported stream "ftp".'); 43 | } 44 | 45 | $contains = [ 46 | 'ftp://speedtest.tele2.net'.\DIRECTORY_SEPARATOR.'1000GB.zip', 47 | 'ftp://speedtest.tele2.net'.\DIRECTORY_SEPARATOR.'100GB.zip', 48 | ]; 49 | $actual = []; 50 | 51 | $i->seek(0); 52 | $actual[] = $i->getPathname(); 53 | 54 | $i->seek(1); 55 | $actual[] = $i->getPathname(); 56 | 57 | $this->assertEquals($contains, $actual); 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-gl.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Erro SMTP: Non puido ser autentificado.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Erro SMTP: Non puido conectar co servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro SMTP: Datos non aceptados.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Corpo da mensaxe vacía'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificación descoñecida: '; 13 | $PHPMAILER_LANG['execute'] = 'Non puido ser executado: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nob puido acceder ó arquivo: '; 15 | $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: No puido abrir o arquivo: '; 16 | $PHPMAILER_LANG['from_failed'] = 'A(s) seguinte(s) dirección(s) de remitente(s) deron erro: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Non puido crear unha instancia da función Mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Non puido envia-lo correo: dirección de email inválida: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer non está soportado.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Debe engadir polo menos unha dirección de email coma destino.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Erro SMTP: Os seguintes destinos fallaron: '; 22 | $PHPMAILER_LANG['signing'] = 'Erro ó firmar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallou.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Erro do servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Non puidemos axustar ou reaxustar a variábel: '; 26 | //$PHPMAILER_LANG['extension_missing'] = 'Extension missing: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Eroare SMTP: Autentificarea a eșuat.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Eroare SMTP: Conectarea la serverul SMTP a eșuat.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Eroare SMTP: Datele nu au fost acceptate.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Mesajul este gol.'; 12 | $PHPMAILER_LANG['encoding'] = 'Encodare necunoscută: '; 13 | $PHPMAILER_LANG['execute'] = 'Nu se poate executa următoarea comandă: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nu se poate accesa următorul fișier: '; 15 | $PHPMAILER_LANG['file_open'] = 'Eroare fișier: Nu se poate deschide următorul fișier: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Următoarele adrese From au dat eroare: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Funcția mail nu a putut fi inițializată.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Adresa de email nu este validă: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nu este suportat.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Trebuie să adăugați cel puțin o adresă de email.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Eroare SMTP: Următoarele adrese de email au eșuat: '; 22 | $PHPMAILER_LANG['signing'] = 'A aparut o problemă la semnarea emailului. '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Conectarea la serverul SMTP a eșuat.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Eroare server SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Nu se poate seta/reseta variabila. '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Lipsește extensia: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP Greška: Neuspjela autentikacija.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP Greška: Ne mogu se spojiti na SMTP poslužitelj.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Greška: Podatci nisu prihvaćeni.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Sadržaj poruke je prazan.'; 12 | $PHPMAILER_LANG['encoding'] = 'Nepoznati encoding: '; 13 | $PHPMAILER_LANG['execute'] = 'Nije moguće izvršiti naredbu: '; 14 | $PHPMAILER_LANG['file_access'] = 'Nije moguće pristupiti datoteci: '; 15 | $PHPMAILER_LANG['file_open'] = 'Nije moguće otvoriti datoteku: '; 16 | $PHPMAILER_LANG['from_failed'] = 'SMTP Greška: Slanje s navedenih e-mail adresa nije uspjelo: '; 17 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Greška: Slanje na navedenih e-mail adresa nije uspjelo: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Ne mogu pokrenuti mail funkcionalnost.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'E-mail nije poslan. Neispravna e-mail adresa: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer nije podržan.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Definirajte barem jednu adresu primatelja.'; 22 | $PHPMAILER_LANG['signing'] = 'Greška prilikom prijave: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Spajanje na SMTP poslužitelj nije uspjelo.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Greška SMTP poslužitelja: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Ne mogu postaviti varijablu niti ju vratiti nazad: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Nedostaje proširenje: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ms.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Ralat SMTP: Tidak dapat pengesahan.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Ralat SMTP: Tidak dapat menghubungi hos pelayan SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Ralat SMTP: Data tidak diterima oleh pelayan.'; 11 | $PHPMAILER_LANG['empty_message'] = 'Tiada isi untuk mesej'; 12 | $PHPMAILER_LANG['encoding'] = 'Pengekodan tidak diketahui: '; 13 | $PHPMAILER_LANG['execute'] = 'Tidak dapat melaksanakan: '; 14 | $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses fail: '; 15 | $PHPMAILER_LANG['file_open'] = 'Ralat Fail: Tidak dapat membuka fail: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Berikut merupakan ralat dari alamat e-mel: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Tidak dapat memberi contoh fungsi e-mel.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Alamat emel tidak sah: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' jenis penghantar emel tidak disokong.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Anda perlu menyediakan sekurang-kurangnya satu alamat e-mel penerima.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Ralat SMTP: Penerima e-mel berikut telah gagal: '; 22 | $PHPMAILER_LANG['signing'] = 'Ralat pada tanda tangan: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() telah gagal.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Ralat pada pelayan SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Tidak boleh menetapkan atau menetapkan semula pembolehubah: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Sambungan hilang: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-de.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Foster Snowhill 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Ошибка SMTP: ошибка авторизации.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Ошибка SMTP: не удается подключиться к серверу SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Ошибка SMTP: данные не приняты.'; 12 | $PHPMAILER_LANG['encoding'] = 'Неизвестный вид кодировки: '; 13 | $PHPMAILER_LANG['execute'] = 'Невозможно выполнить команду: '; 14 | $PHPMAILER_LANG['file_access'] = 'Нет доступа к файлу: '; 15 | $PHPMAILER_LANG['file_open'] = 'Файловая ошибка: не удается открыть файл: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Неверный адрес отправителя: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Невозможно запустить функцию mail.'; 18 | $PHPMAILER_LANG['provide_address'] = 'Пожалуйста, введите хотя бы один адрес e-mail получателя.'; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' — почтовый сервер не поддерживается.'; 20 | $PHPMAILER_LANG['recipients_failed'] = 'Ошибка SMTP: отправка по следующим адресам получателей не удалась: '; 21 | $PHPMAILER_LANG['empty_message'] = 'Пустое сообщение'; 22 | $PHPMAILER_LANG['invalid_address'] = 'Не отослано, неправильный формат email адреса: '; 23 | $PHPMAILER_LANG['signing'] = 'Ошибка подписи: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ошибка соединения с SMTP-сервером'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Ошибка SMTP-сервера: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Невозможно установить или переустановить переменную: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Расширение отсутствует: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sl.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Filip Š 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP napaka: Avtentikacija ni uspela.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP napaka: Vzpostavljanje povezave s SMTP gostiteljem ni uspelo.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP napaka: Strežnik zavrača podatke.'; 12 | $PHPMAILER_LANG['empty_message'] = 'E-poštno sporočilo nima vsebine.'; 13 | $PHPMAILER_LANG['encoding'] = 'Nepoznan tip kodiranja: '; 14 | $PHPMAILER_LANG['execute'] = 'Operacija ni uspela: '; 15 | $PHPMAILER_LANG['file_access'] = 'Nimam dostopa do datoteke: '; 16 | $PHPMAILER_LANG['file_open'] = 'Ne morem odpreti datoteke: '; 17 | $PHPMAILER_LANG['from_failed'] = 'Neveljaven e-naslov pošiljatelja: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Ne morem inicializirati mail funkcije.'; 19 | $PHPMAILER_LANG['invalid_address'] = 'E-poštno sporočilo ni bilo poslano. E-naslov je neveljaven: '; 20 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer ni podprt.'; 21 | $PHPMAILER_LANG['provide_address'] = 'Prosim vnesite vsaj enega naslovnika.'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP napaka: Sledeči naslovniki so neveljavni: '; 23 | $PHPMAILER_LANG['signing'] = 'Napaka pri podpisovanju: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Ne morem vzpostaviti povezave s SMTP strežnikom.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Napaka SMTP strežnika: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Ne morem nastaviti oz. ponastaviti spremenljivke: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Manjkajoča razširitev: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-ka.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'SMTP შეცდომა: ავტორიზაცია შეუძლებელია.'; 9 | $PHPMAILER_LANG['connect_host'] = 'SMTP შეცდომა: SMTP სერვერთან დაკავშირება შეუძლებელია.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP შეცდომა: მონაცემები არ იქნა მიღებული.'; 11 | $PHPMAILER_LANG['encoding'] = 'კოდირების უცნობი ტიპი: '; 12 | $PHPMAILER_LANG['execute'] = 'შეუძლებელია შემდეგი ბრძანების შესრულება: '; 13 | $PHPMAILER_LANG['file_access'] = 'შეუძლებელია წვდომა ფაილთან: '; 14 | $PHPMAILER_LANG['file_open'] = 'ფაილური სისტემის შეცდომა: არ იხსნება ფაილი: '; 15 | $PHPMAILER_LANG['from_failed'] = 'გამგზავნის არასწორი მისამართი: '; 16 | $PHPMAILER_LANG['instantiate'] = 'mail ფუნქციის გაშვება ვერ ხერხდება.'; 17 | $PHPMAILER_LANG['provide_address'] = 'გთხოვთ მიუთითოთ ერთი ადრესატის e-mail მისამართი მაინც.'; 18 | $PHPMAILER_LANG['mailer_not_supported'] = ' - საფოსტო სერვერის მხარდაჭერა არ არის.'; 19 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP შეცდომა: შემდეგ მისამართებზე გაგზავნა ვერ მოხერხდა: '; 20 | $PHPMAILER_LANG['empty_message'] = 'შეტყობინება ცარიელია'; 21 | $PHPMAILER_LANG['invalid_address'] = 'არ გაიგზავნა, e-mail მისამართის არასწორი ფორმატი: '; 22 | $PHPMAILER_LANG['signing'] = 'ხელმოწერის შეცდომა: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'შეცდომა SMTP სერვერთან დაკავშირებისას'; 24 | $PHPMAILER_LANG['smtp_error'] = 'SMTP სერვერის შეცდომა: '; 25 | $PHPMAILER_LANG['variable_set'] = 'შეუძლებელია შემდეგი ცვლადის შექმნა ან შეცვლა: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'ბიბლიოთეკა არ არსებობს: '; 27 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-sr.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Miloš Milanović 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP грешка: аутентификација није успела.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP грешка: повезивање са SMTP сервером није успело.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP грешка: подаци нису прихваћени.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Садржај поруке је празан.'; 13 | $PHPMAILER_LANG['encoding'] = 'Непознато кодирање: '; 14 | $PHPMAILER_LANG['execute'] = 'Није могуће извршити наредбу: '; 15 | $PHPMAILER_LANG['file_access'] = 'Није могуће приступити датотеци: '; 16 | $PHPMAILER_LANG['file_open'] = 'Није могуће отворити датотеку: '; 17 | $PHPMAILER_LANG['from_failed'] = 'SMTP грешка: слање са следећих адреса није успело: '; 18 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP грешка: слање на следеће адресе није успело: '; 19 | $PHPMAILER_LANG['instantiate'] = 'Није могуће покренути mail функцију.'; 20 | $PHPMAILER_LANG['invalid_address'] = 'Порука није послата. Неисправна адреса: '; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' мејлер није подржан.'; 22 | $PHPMAILER_LANG['provide_address'] = 'Дефинишите бар једну адресу примаоца.'; 23 | $PHPMAILER_LANG['signing'] = 'Грешка приликом пријаве: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Повезивање са SMTP сервером није успело.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Грешка SMTP сервера: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Није могуће задати нити ресетовати променљиву: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Недостаје проширење: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-mg.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | $PHPMAILER_LANG['authenticate'] = 'Hadisoana SMTP: Tsy nahomby ny fanamarinana.'; 8 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Tsy afaka mampifandray amin\'ny mpampiantrano SMTP.'; 9 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP diso: tsy voarakitra ny angona.'; 10 | $PHPMAILER_LANG['empty_message'] = 'Tsy misy ny votoaty mailaka.'; 11 | $PHPMAILER_LANG['encoding'] = 'Tsy fantatra encoding: '; 12 | $PHPMAILER_LANG['execute'] = 'Tsy afaka manatanteraka ity baiko manaraka ity: '; 13 | $PHPMAILER_LANG['file_access'] = 'Tsy nahomby ny fidirana amin\'ity rakitra ity: '; 14 | $PHPMAILER_LANG['file_open'] = 'Hadisoana diso: Tsy afaka nanokatra ity file manaraka ity: '; 15 | $PHPMAILER_LANG['from_failed'] = 'Ny adiresy iraka manaraka dia diso: '; 16 | $PHPMAILER_LANG['instantiate'] = 'Tsy afaka nanomboka ny hetsika mail.'; 17 | $PHPMAILER_LANG['invalid_address'] = 'Tsy mety ny adiresy: '; 18 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer tsy manohana.'; 19 | $PHPMAILER_LANG['provide_address'] = 'Alefaso azafady iray adiresy iray farafahakeliny.'; 20 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: Tsy mety ireo mpanaraka ireto: '; 21 | $PHPMAILER_LANG['signing'] = 'Error nandritra ny sonia:'; 22 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Tsy nahomby ny fifandraisana tamin\'ny server SMTP.'; 23 | $PHPMAILER_LANG['smtp_error'] = 'Fahadisoana tamin\'ny server SMTP: '; 24 | $PHPMAILER_LANG['variable_set'] = 'Tsy azo atao ny mametraka na mamerina ny variable: '; 25 | $PHPMAILER_LANG['extension_missing'] = 'Tsy hita ny ampahany: '; 26 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-id.php: -------------------------------------------------------------------------------- 1 | 6 | * @author @januridp 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Kesalahan SMTP: Tidak dapat mengotentikasi.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Kesalahan SMTP: Tidak dapat terhubung ke host SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Kesalahan SMTP: Data tidak diterima.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Isi pesan kosong'; 13 | $PHPMAILER_LANG['encoding'] = 'Pengkodean karakter tidak dikenali: '; 14 | $PHPMAILER_LANG['execute'] = 'Tidak dapat menjalankan proses : '; 15 | $PHPMAILER_LANG['file_access'] = 'Tidak dapat mengakses berkas : '; 16 | $PHPMAILER_LANG['file_open'] = 'Kesalahan File: Berkas tidak dapat dibuka : '; 17 | $PHPMAILER_LANG['from_failed'] = 'Alamat pengirim berikut mengakibatkan kesalahan : '; 18 | $PHPMAILER_LANG['instantiate'] = 'Tidak dapat menginisialisasi fungsi surel'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Gagal terkirim, alamat surel tidak benar : '; 20 | $PHPMAILER_LANG['provide_address'] = 'Harus disediakan minimal satu alamat tujuan'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer tidak didukung'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'Kesalahan SMTP: Alamat tujuan berikut menghasilkan kesalahan : '; 23 | $PHPMAILER_LANG['signing'] = 'Kesalahan dalam tanda tangan : '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() gagal.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Kesalahan pada pelayan SMTP : '; 26 | $PHPMAILER_LANG['variable_set'] = 'Tidak dapat mengatur atau mengatur ulang variable : '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Ekstensi hilang: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-uk.php: -------------------------------------------------------------------------------- 1 | 6 | * @fixed by Boris Yurchenko 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'Помилка SMTP: помилка авторизації.'; 10 | $PHPMAILER_LANG['connect_host'] = 'Помилка SMTP: не вдається під\'єднатися до серверу SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'Помилка SMTP: дані не прийняті.'; 12 | $PHPMAILER_LANG['encoding'] = 'Невідомий тип кодування: '; 13 | $PHPMAILER_LANG['execute'] = 'Неможливо виконати команду: '; 14 | $PHPMAILER_LANG['file_access'] = 'Немає доступу до файлу: '; 15 | $PHPMAILER_LANG['file_open'] = 'Помилка файлової системи: не вдається відкрити файл: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Невірна адреса відправника: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Неможливо запустити функцію mail.'; 18 | $PHPMAILER_LANG['provide_address'] = 'Будь-ласка, введіть хоча б одну адресу e-mail отримувача.'; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' - поштовий сервер не підтримується.'; 20 | $PHPMAILER_LANG['recipients_failed'] = 'Помилка SMTP: відправлення наступним отримувачам не вдалося: '; 21 | $PHPMAILER_LANG['empty_message'] = 'Пусте тіло повідомлення'; 22 | $PHPMAILER_LANG['invalid_address'] = 'Не відправлено, невірний формат адреси e-mail: '; 23 | $PHPMAILER_LANG['signing'] = 'Помилка підпису: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'Помилка з\'єднання із SMTP-сервером'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Помилка SMTP-сервера: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Неможливо встановити або перевстановити змінну: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Не знайдено розширення: '; 28 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/SizeRangeFilterIteratorTest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Tests\Iterator; 13 | 14 | use Symfony\Component\Finder\Comparator\NumberComparator; 15 | use Symfony\Component\Finder\Iterator\SizeRangeFilterIterator; 16 | 17 | class SizeRangeFilterIteratorTest extends RealIteratorTestCase 18 | { 19 | /** 20 | * @dataProvider getAcceptData 21 | */ 22 | public function testAccept($size, $expected) 23 | { 24 | $inner = new InnerSizeIterator(self::$files); 25 | 26 | $iterator = new SizeRangeFilterIterator($inner, $size); 27 | 28 | $this->assertIterator($expected, $iterator); 29 | } 30 | 31 | public function getAcceptData() 32 | { 33 | $lessThan1KGreaterThan05K = [ 34 | '.foo', 35 | '.git', 36 | 'foo', 37 | 'qux', 38 | 'test.php', 39 | 'toto', 40 | 'toto/.git', 41 | ]; 42 | 43 | return [ 44 | [[new NumberComparator('< 1K'), new NumberComparator('> 0.5K')], $this->toAbsolute($lessThan1KGreaterThan05K)], 45 | ]; 46 | } 47 | } 48 | 49 | class InnerSizeIterator extends \ArrayIterator 50 | { 51 | public function current() 52 | { 53 | return new \SplFileInfo(parent::current()); 54 | } 55 | 56 | public function getFilename() 57 | { 58 | return parent::current(); 59 | } 60 | 61 | public function isFile() 62 | { 63 | return $this->current()->isFile(); 64 | } 65 | 66 | public function getSize() 67 | { 68 | return $this->current()->getSize(); 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-it.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Stefano Sabatini 7 | */ 8 | 9 | $PHPMAILER_LANG['authenticate'] = 'SMTP Error: Impossibile autenticarsi.'; 10 | $PHPMAILER_LANG['connect_host'] = 'SMTP Error: Impossibile connettersi all\'host SMTP.'; 11 | $PHPMAILER_LANG['data_not_accepted'] = 'SMTP Error: Dati non accettati dal server.'; 12 | $PHPMAILER_LANG['empty_message'] = 'Il corpo del messaggio è vuoto'; 13 | $PHPMAILER_LANG['encoding'] = 'Codifica dei caratteri sconosciuta: '; 14 | $PHPMAILER_LANG['execute'] = 'Impossibile eseguire l\'operazione: '; 15 | $PHPMAILER_LANG['file_access'] = 'Impossibile accedere al file: '; 16 | $PHPMAILER_LANG['file_open'] = 'File Error: Impossibile aprire il file: '; 17 | $PHPMAILER_LANG['from_failed'] = 'I seguenti indirizzi mittenti hanno generato errore: '; 18 | $PHPMAILER_LANG['instantiate'] = 'Impossibile istanziare la funzione mail'; 19 | $PHPMAILER_LANG['invalid_address'] = 'Impossibile inviare, l\'indirizzo email non è valido: '; 20 | $PHPMAILER_LANG['provide_address'] = 'Deve essere fornito almeno un indirizzo ricevente'; 21 | $PHPMAILER_LANG['mailer_not_supported'] = 'Mailer non supportato'; 22 | $PHPMAILER_LANG['recipients_failed'] = 'SMTP Error: I seguenti indirizzi destinatari hanno generato un errore: '; 23 | $PHPMAILER_LANG['signing'] = 'Errore nella firma: '; 24 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() fallita.'; 25 | $PHPMAILER_LANG['smtp_error'] = 'Errore del server SMTP: '; 26 | $PHPMAILER_LANG['variable_set'] = 'Impossibile impostare o resettare la variabile: '; 27 | $PHPMAILER_LANG['extension_missing'] = 'Estensione mancante: '; 28 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pt.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | $PHPMAILER_LANG['authenticate'] = 'Erro do SMTP: Não foi possível realizar a autenticação.'; 9 | $PHPMAILER_LANG['connect_host'] = 'Erro do SMTP: Não foi possível realizar ligação com o servidor SMTP.'; 10 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro do SMTP: Os dados foram rejeitados.'; 11 | $PHPMAILER_LANG['empty_message'] = 'A mensagem no e-mail está vazia.'; 12 | $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; 13 | $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; 14 | $PHPMAILER_LANG['file_access'] = 'Não foi possível aceder o ficheiro: '; 15 | $PHPMAILER_LANG['file_open'] = 'Abertura do ficheiro: Não foi possível abrir o ficheiro: '; 16 | $PHPMAILER_LANG['from_failed'] = 'Ocorreram falhas nos endereços dos seguintes remententes: '; 17 | $PHPMAILER_LANG['instantiate'] = 'Não foi possível iniciar uma instância da função mail.'; 18 | $PHPMAILER_LANG['invalid_address'] = 'Não foi enviado nenhum e-mail para o endereço de e-mail inválido: '; 19 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; 20 | $PHPMAILER_LANG['provide_address'] = 'Tem de fornecer pelo menos um endereço como destinatário do e-mail.'; 21 | $PHPMAILER_LANG['recipients_failed'] = 'Erro do SMTP: O endereço do seguinte destinatário falhou: '; 22 | $PHPMAILER_LANG['signing'] = 'Erro ao assinar: '; 23 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; 24 | $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; 25 | $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; 26 | $PHPMAILER_LANG['extension_missing'] = 'Extensão em falta: '; 27 | -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- 1 | = 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); 27 | if ($useStaticLoader) { 28 | require_once __DIR__ . '/autoload_static.php'; 29 | 30 | call_user_func(\Composer\Autoload\ComposerStaticInita7044ddbb71c4f49f0b05bae1d9095cd::getInitializer($loader)); 31 | } else { 32 | $map = require __DIR__ . '/autoload_namespaces.php'; 33 | foreach ($map as $namespace => $path) { 34 | $loader->set($namespace, $path); 35 | } 36 | 37 | $map = require __DIR__ . '/autoload_psr4.php'; 38 | foreach ($map as $namespace => $path) { 39 | $loader->setPsr4($namespace, $path); 40 | } 41 | 42 | $classMap = require __DIR__ . '/autoload_classmap.php'; 43 | if ($classMap) { 44 | $loader->addClassMap($classMap); 45 | } 46 | } 47 | 48 | $loader->register(true); 49 | 50 | return $loader; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "phpmailer/phpmailer", 3 | "type": "library", 4 | "description": "PHPMailer is a full-featured email creation and transfer class for PHP", 5 | "authors": [ 6 | { 7 | "name": "Marcus Bointon", 8 | "email": "phpmailer@synchromedia.co.uk" 9 | }, 10 | { 11 | "name": "Jim Jagielski", 12 | "email": "jimjag@gmail.com" 13 | }, 14 | { 15 | "name": "Andy Prevost", 16 | "email": "codeworxtech@users.sourceforge.net" 17 | }, 18 | { 19 | "name": "Brent R. Matzelle" 20 | } 21 | ], 22 | "require": { 23 | "php": ">=5.5.0", 24 | "ext-ctype": "*", 25 | "ext-filter": "*" 26 | }, 27 | "require-dev": { 28 | "friendsofphp/php-cs-fixer": "^2.2", 29 | "phpdocumentor/phpdocumentor": "2.*", 30 | "phpunit/phpunit": "^4.8 || ^5.7", 31 | "zendframework/zend-serializer": "2.7.*", 32 | "doctrine/annotations": "1.2.*", 33 | "zendframework/zend-eventmanager": "3.0.*", 34 | "zendframework/zend-i18n": "2.7.3" 35 | }, 36 | "suggest": { 37 | "psr/log": "For optional PSR-3 debug logging", 38 | "league/oauth2-google": "Needed for Google XOAUTH2 authentication", 39 | "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication", 40 | "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication", 41 | "ext-mbstring": "Needed to send email in multibyte encoding charset", 42 | "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)" 43 | }, 44 | "autoload": { 45 | "psr-4": { 46 | "PHPMailer\\PHPMailer\\": "src/" 47 | } 48 | }, 49 | "autoload-dev": { 50 | "psr-4": { 51 | "PHPMailer\\Test\\": "test/" 52 | } 53 | }, 54 | "license": "LGPL-2.1" 55 | } 56 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/language/phpmailer.lang-pt_br.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Lucas Guimarães 7 | * @author Phelipe Alves 8 | * @author Fabio Beneditto 9 | */ 10 | 11 | $PHPMAILER_LANG['authenticate'] = 'Erro de SMTP: Não foi possível autenticar.'; 12 | $PHPMAILER_LANG['connect_host'] = 'Erro de SMTP: Não foi possível conectar ao servidor SMTP.'; 13 | $PHPMAILER_LANG['data_not_accepted'] = 'Erro de SMTP: Dados rejeitados.'; 14 | $PHPMAILER_LANG['empty_message'] = 'Mensagem vazia'; 15 | $PHPMAILER_LANG['encoding'] = 'Codificação desconhecida: '; 16 | $PHPMAILER_LANG['execute'] = 'Não foi possível executar: '; 17 | $PHPMAILER_LANG['file_access'] = 'Não foi possível acessar o arquivo: '; 18 | $PHPMAILER_LANG['file_open'] = 'Erro de Arquivo: Não foi possível abrir o arquivo: '; 19 | $PHPMAILER_LANG['from_failed'] = 'Os seguintes remetentes falharam: '; 20 | $PHPMAILER_LANG['instantiate'] = 'Não foi possível instanciar a função mail.'; 21 | $PHPMAILER_LANG['invalid_address'] = 'Endereço de e-mail inválido: '; 22 | $PHPMAILER_LANG['mailer_not_supported'] = ' mailer não é suportado.'; 23 | $PHPMAILER_LANG['provide_address'] = 'Você deve informar pelo menos um destinatário.'; 24 | $PHPMAILER_LANG['recipients_failed'] = 'Erro de SMTP: Os seguintes destinatários falharam: '; 25 | $PHPMAILER_LANG['signing'] = 'Erro de Assinatura: '; 26 | $PHPMAILER_LANG['smtp_connect_failed'] = 'SMTP Connect() falhou.'; 27 | $PHPMAILER_LANG['smtp_error'] = 'Erro de servidor SMTP: '; 28 | $PHPMAILER_LANG['variable_set'] = 'Não foi possível definir ou redefinir a variável: '; 29 | $PHPMAILER_LANG['extension_missing'] = 'Extensão ausente: '; 30 | -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- 1 | load->view('comm/header', $this->data); 10 | 11 | ?> 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 46 | 47 | 48 | 49 |
用户ID用户邮箱用户昵称注册时间注册ip一言总数操作
36 | 40 | 45 |
50 |
51 | 52 |
53 |
54 | 55 | load->view('comm/footer')?> 56 | -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- 1 | my_controller/index 50 | | my-controller/my-method -> my_controller/my_method 51 | */ 52 | $route['default_controller'] = 'Home'; 53 | $route['404_override'] = ''; 54 | $route['translate_uri_dashes'] = FALSE; 55 | -------------------------------------------------------------------------------- /application/views/admin/cat.php: -------------------------------------------------------------------------------- 1 | load->view('comm/header', $this->data); 10 | 11 | ?> 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 44 | 45 | 46 | 47 |
分类ID分类短名分类全名分类描述分类一言数操作
34 | 38 | 43 |
48 |
49 | 50 | add 51 | 52 |
53 |
54 | 55 | load->view('comm/footer')?> 56 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Comparator/ComparatorTest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Tests\Comparator; 13 | 14 | use PHPUnit\Framework\TestCase; 15 | use Symfony\Component\Finder\Comparator\Comparator; 16 | 17 | class ComparatorTest extends TestCase 18 | { 19 | public function testGetSetOperator() 20 | { 21 | $comparator = new Comparator(); 22 | try { 23 | $comparator->setOperator('foo'); 24 | $this->fail('->setOperator() throws an \InvalidArgumentException if the operator is not valid.'); 25 | } catch (\Exception $e) { 26 | $this->assertInstanceOf('InvalidArgumentException', $e, '->setOperator() throws an \InvalidArgumentException if the operator is not valid.'); 27 | } 28 | 29 | $comparator = new Comparator(); 30 | $comparator->setOperator('>'); 31 | $this->assertEquals('>', $comparator->getOperator(), '->getOperator() returns the current operator'); 32 | } 33 | 34 | public function testGetSetTarget() 35 | { 36 | $comparator = new Comparator(); 37 | $comparator->setTarget(8); 38 | $this->assertEquals(8, $comparator->getTarget(), '->getTarget() returns the target'); 39 | } 40 | 41 | /** 42 | * @dataProvider getTestData 43 | */ 44 | public function testTest($operator, $target, $match, $noMatch) 45 | { 46 | $c = new Comparator(); 47 | $c->setOperator($operator); 48 | $c->setTarget($target); 49 | 50 | foreach ($match as $m) { 51 | $this->assertTrue($c->test($m), '->test() tests a string against the expression'); 52 | } 53 | 54 | foreach ($noMatch as $m) { 55 | $this->assertFalse($c->test($m), '->test() tests a string against the expression'); 56 | } 57 | } 58 | 59 | public function getTestData() 60 | { 61 | return [ 62 | ['<', '1000', ['500', '999'], ['1000', '1500']], 63 | ]; 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /vendor/symfony/finder/SplFileInfo.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder; 13 | 14 | /** 15 | * Extends \SplFileInfo to support relative paths. 16 | * 17 | * @author Fabien Potencier 18 | */ 19 | class SplFileInfo extends \SplFileInfo 20 | { 21 | private $relativePath; 22 | private $relativePathname; 23 | 24 | /** 25 | * @param string $file The file name 26 | * @param string $relativePath The relative path 27 | * @param string $relativePathname The relative path name 28 | */ 29 | public function __construct(string $file, string $relativePath, string $relativePathname) 30 | { 31 | parent::__construct($file); 32 | $this->relativePath = $relativePath; 33 | $this->relativePathname = $relativePathname; 34 | } 35 | 36 | /** 37 | * Returns the relative path. 38 | * 39 | * This path does not contain the file name. 40 | * 41 | * @return string the relative path 42 | */ 43 | public function getRelativePath() 44 | { 45 | return $this->relativePath; 46 | } 47 | 48 | /** 49 | * Returns the relative path name. 50 | * 51 | * This path contains the file name. 52 | * 53 | * @return string the relative path name 54 | */ 55 | public function getRelativePathname() 56 | { 57 | return $this->relativePathname; 58 | } 59 | 60 | /** 61 | * Returns the contents of the file. 62 | * 63 | * @return string the contents of the file 64 | * 65 | * @throws \RuntimeException 66 | */ 67 | public function getContents() 68 | { 69 | set_error_handler(function ($type, $msg) use (&$error) { $error = $msg; }); 70 | $content = file_get_contents($this->getPathname()); 71 | restore_error_handler(); 72 | if (false === $content) { 73 | throw new \RuntimeException($error); 74 | } 75 | 76 | return $content; 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /vendor/symfony/finder/Tests/Iterator/FileTypeFilterIteratorTest.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view the LICENSE 9 | * file that was distributed with this source code. 10 | */ 11 | 12 | namespace Symfony\Component\Finder\Tests\Iterator; 13 | 14 | use Symfony\Component\Finder\Iterator\FileTypeFilterIterator; 15 | 16 | class FileTypeFilterIteratorTest extends RealIteratorTestCase 17 | { 18 | /** 19 | * @dataProvider getAcceptData 20 | */ 21 | public function testAccept($mode, $expected) 22 | { 23 | $inner = new InnerTypeIterator(self::$files); 24 | 25 | $iterator = new FileTypeFilterIterator($inner, $mode); 26 | 27 | $this->assertIterator($expected, $iterator); 28 | } 29 | 30 | public function getAcceptData() 31 | { 32 | $onlyFiles = [ 33 | 'test.py', 34 | 'foo/bar.tmp', 35 | 'test.php', 36 | '.bar', 37 | '.foo/.bar', 38 | '.foo/bar', 39 | 'foo bar', 40 | 'qux/baz_100_1.py', 41 | 'qux/baz_1_2.py', 42 | 'qux_0_1.php', 43 | 'qux_1000_1.php', 44 | 'qux_1002_0.php', 45 | 'qux_10_2.php', 46 | 'qux_12_0.php', 47 | 'qux_2_0.php', 48 | ]; 49 | 50 | $onlyDirectories = [ 51 | '.git', 52 | 'foo', 53 | 'qux', 54 | 'toto', 55 | 'toto/.git', 56 | '.foo', 57 | ]; 58 | 59 | return [ 60 | [FileTypeFilterIterator::ONLY_FILES, $this->toAbsolute($onlyFiles)], 61 | [FileTypeFilterIterator::ONLY_DIRECTORIES, $this->toAbsolute($onlyDirectories)], 62 | ]; 63 | } 64 | } 65 | 66 | class InnerTypeIterator extends \ArrayIterator 67 | { 68 | public function current() 69 | { 70 | return new \SplFileInfo(parent::current()); 71 | } 72 | 73 | public function isFile() 74 | { 75 | return $this->current()->isFile(); 76 | } 77 | 78 | public function isDir() 79 | { 80 | return $this->current()->isDir(); 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /vendor/phpmailer/phpmailer/COMMITMENT: -------------------------------------------------------------------------------- 1 | GPL Cooperation Commitment 2 | Version 1.0 3 | 4 | Before filing or continuing to prosecute any legal proceeding or claim 5 | (other than a Defensive Action) arising from termination of a Covered 6 | License, we commit to extend to the person or entity ('you') accused 7 | of violating the Covered License the following provisions regarding 8 | cure and reinstatement, taken from GPL version 3. As used here, the 9 | term 'this License' refers to the specific Covered License being 10 | enforced. 11 | 12 | However, if you cease all violation of this License, then your 13 | license from a particular copyright holder is reinstated (a) 14 | provisionally, unless and until the copyright holder explicitly 15 | and finally terminates your license, and (b) permanently, if the 16 | copyright holder fails to notify you of the violation by some 17 | reasonable means prior to 60 days after the cessation. 18 | 19 | Moreover, your license from a particular copyright holder is 20 | reinstated permanently if the copyright holder notifies you of the 21 | violation by some reasonable means, this is the first time you 22 | have received notice of violation of this License (for any work) 23 | from that copyright holder, and you cure the violation prior to 30 24 | days after your receipt of the notice. 25 | 26 | We intend this Commitment to be irrevocable, and binding and 27 | enforceable against us and assignees of or successors to our 28 | copyrights. 29 | 30 | Definitions 31 | 32 | 'Covered License' means the GNU General Public License, version 2 33 | (GPLv2), the GNU Lesser General Public License, version 2.1 34 | (LGPLv2.1), or the GNU Library General Public License, version 2 35 | (LGPLv2), all as published by the Free Software Foundation. 36 | 37 | 'Defensive Action' means a legal proceeding or claim that We bring 38 | against you in response to a prior proceeding or claim initiated by 39 | you or your affiliate. 40 | 41 | 'We' means each contributor to this repository as of the date of 42 | inclusion of this file, including subsidiaries of a corporate 43 | contributor. 44 | 45 | This work is available under a Creative Commons Attribution-ShareAlike 46 | 4.0 International license (https://creativecommons.org/licenses/by-sa/4.0/). 47 | -------------------------------------------------------------------------------- /application/views/admin/cat_add.php: -------------------------------------------------------------------------------- 1 | load->view('comm/header', $this->data); 10 | 11 | ?> 12 | 13 |
14 |
15 |
16 |
17 |
18 |
19 |

新增分类

20 |
21 | 22 | 23 |
24 |
25 |
26 | 28 | 29 |
30 |
31 |
32 | 34 | 35 |
36 | 38 |
39 |
40 |
41 |
42 |
43 |
44 | 45 |
46 | load->view('comm/footer')?> 47 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsupported_feature'); 59 | } 60 | 61 | } 62 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AL_Hitokoto 2 | Hitokoto,基于php+mysql开发的Hitokoto/ヒトコト 一言管理系统 3 | 已添加3800多条一言数据 4 | 5 | ## 演示 6 | 演示地址:http://hitokoto.alapi.cn/ 7 | 8 | ## 什么是一言? 9 | 动漫也好、小说也好、网络也好,不论在哪里,我们总会看到有那么一两个句子能穿透你的心。「一言」就好似一个公开的摘抄本,我们在此记录那些让人一眼就有所感触的短句,并通过公共 API 的形式使你能够在自己的项目中调用它们。 10 | 11 | # TODO 12 | 1.准备重构前端 13 | 2.使用ThinkPHP 重构系统 14 | 15 | ## 功能 16 | 基本的用户注册登录,添加一言,管理员可以管理会员、一言、分类... 17 | 18 | ## 使用方法 19 | 下载好程序,上传到你的虚拟主机或者VPS 20 | 把`hitokoto.sql` 上传的你的数据库,配置数据库. 21 | 22 | ### 配置 23 | #### 域名配置 24 | 打开 `application /config/config.php` 25 | 修改 `$config['base_url']='http://hitokoto.alapi.cn' ` 26 | 把域名修改为你的 27 | 28 | #### 数据库配置 29 | 打开 `application /config/database.php` 30 | 修改里面的数据库配置 31 | > 'hostname' => '数据库地址', 32 | 'username' => '数据库用户名', 33 | 'password' => '数据库密码', 34 | 'database' => '数据库名', 35 | 36 | 37 | #### 基本配置&邮箱配置 38 | 打开 `application /config/hitokoto_conf.php` 39 | 40 | > $config['site_name']='Hitokoto';//网站名称 41 | $config['footer_desc']='一言,记录美好的句子';//底部描述 42 | 43 | > $config['mail_smtp']=''; //smtp 地址 44 | $config['mail_user']='';//smtp 用户名 45 | $config['mail_pass']='';//smtp 密码 46 | $config['mail_secure']='ssl';//smtp协议 47 | $config['mail_port']=994;//smtp tcp 端口 48 | $config['mail_from']="";//发件人地址 49 | 50 | #### redis 51 | redis 是限制API接口请求频率的 52 | 配置文件在 `application/helpers/redis_helper.php` 53 | 可以修改redis 服务器地址和端口,还有限制的频率。 54 | 55 | #### 管理员 56 | 默认管理员账号 `im@alone88.cn` 密码:`admin888` 57 | 添加管理员的话注册用户,把用户的数据表的level改成1就可以了 58 | 59 | ## API 60 | Hitokoto一言API,默认随机返回一条json格式数据 61 | ### 请求地址 62 | > 域名地址/api 63 | 64 | ### 请求方式 65 | `get` 66 | ### 请求参数 67 | 68 | | 参数 | 描述 || 69 | | ------------ | ------------ | ------------ | 70 | | encode | 返回数据类型,默认json |json、text、js、xml| 71 | | charset | 返回编码 |gbk、utf8| 72 | | cat| 返回的分类 |a、b、c、d....| 73 | 74 | encode 返回的数据类型 75 | charset 返回的编码格式,默认utf8 76 | cat 返回一言的分类,默认不设置,随机返回一种分类 77 | 78 | #### 伪静态 79 | 必须要开启伪静态 80 | Apache 伪静态 81 | ```apacheconfig 82 | RewriteEngine On 83 | RewriteCond %{REQUEST_FILENAME} !-f 84 | RewriteCond %{REQUEST_FILENAME} !-d 85 | RewriteRule ^(.*)$ index.php/$1 [L] 86 | ``` 87 | 88 | Nginx伪静态 89 | ```nginx 90 | if (!-f $request_filename){ 91 | set $rule_0 1$rule_0; 92 | } 93 | if (!-d $request_filename){ 94 | set $rule_0 2$rule_0; 95 | } 96 | if ($rule_0 = "21"){ 97 | rewrite ^/(.*)$ /index.php/$1 last; 98 | } 99 | 100 | ``` 101 | --------------------------------------------------------------------------------