moodle-tool_mfa
A Multi-Factor Authentication Moodle plugin with flexible support for TOTP, Email, IP and more
파일 탐색기
- ci.yml
- autosubmit_verification_code.min.js
- autosubmit_verification_code.min.js.map
- autosubmit_verification_code.js
- user_deleted_factor.php
- user_failed_mfa.php
- user_passed_mfa.php
- user_revoked_factor.php
- user_setup_factor.php
- fallback.php
- object_factor.php
- object_factor_base.php
- global_form_manager.php
- login_form.php
- reset_factor.php
- revoke_factor_form.php
- setup_factor_form.php
- verification_field.php
- admin_setting_managemfa.php
- secret_manager.php
- factor.php
- provider.php
- manager.php
- access.php
- install.xml
- subplugins.json
- subplugins.php
- upgrade.php
- provider.php
- factor.php
- factor_admin.php
- settings.php
- version.php
- provider.php
- factor.php
- upgrade.php
- factor_auth.php
- settings.php
- version.php
- provider.php
- factor.php
- access.php
- factor_capability.php
- settings.php
- version.php
- provider.php
- factor.php
- factor_cohort.php
- settings.php
- version.php
- unauth_email.php
- email.php
- provider.php
- factor.php
- factor_email.php
- email.mustache
- factor_test.php
- email.php
- renderer.php
- settings.php
- version.php
- provider.php
- revoke_expired_factors.php
- factor.php
- tasks.php
- factor_grace.php
- factor_test.php
- settings.php
- version.php
- provider.php
- factor.php
- factor_iprange.php
- settings.php
- version.php
- provider.php
- factor.php
- factor_loginbanner.php
- settings.php
- version.php
- provider.php
- delete_unusable_factors.php
- factor.php
- tasks.php
- factor_nosetup.php
- settings.php
- version.php
- provider.php
- factor.php
- factor_role.php
- settings.php
- version.php
- provider.php
- factor.php
- factor_secq.php
- settings.php
- version.php
- sms_sent.php
- aws_sns.php
- gateway_interface.php
- modica.php
- provider.php
- factor.php
- helper.php
- upgrade.php
- factor_sms.php
- settings.php
- version.php
- token_created.php
- provider.php
- factor.php
- factor_token.php
- factor_test.php
- settings.php
- version.php
- provider.php
- factor.php
- Assertion.php
- AssertionFailedException.php
- InvalidArgumentException.php
- OTP.php
- OTPInterface.php
- ParameterTrait.php
- TOTP.php
- TOTPInterface.php
- Base32.php
- Binary.php
- EncoderInterface.php
- factor_totp.php
- factor_test.php
- settings.php
- thirdpartylibs.xml
- version.php
- .gitkeep
- apple.pem
- globalSign.pem
- googleHardware.pem
- hypersecu.pem
- microsoftTpmCollection.pem
- solo.pem
- yubico.pem
- client.html
- server.php
- AndroidKey.php
- AndroidSafetyNet.php
- Apple.php
- FormatBase.php
- None.php
- Packed.php
- Tpm.php
- U2f.php
- AttestationObject.php
- AuthenticatorData.php
- ByteBuffer.php
- CborDecoder.php
- WebAuthn.php
- WebAuthnException.php
- .gitignore
- composer.json
- LICENSE
- README.md
- login.min.js
- login.min.js.map
- register.min.js
- register.min.js.map
- utils.min.js
- utils.min.js.map
- login.js
- register.js
- utils.js
- provider.php
- factor.php
- factor_webauthn.php
- settings.php
- thirdpartylibs.xml
- version.php
- exemption
- tool_mfa.php
- guide_link.mustache
- admin_setting_managemfa_test.php
- manager_test.php
- object_factor_base_test.php
- plugininfo_factor_test.php
- secret_manager_test.php
- tool_mfa_testcase.php
- .gitattributes
- .gitmodules
- action.php
- auth.php
- factor_report.php
- guide.php
- index.php
- lib.php
- phpunit.xml
- README.md
- renderer.php
- reset_factor.php
- settings.php
- styles.css
- thirdpartylibs.xml
- user_preferences.php
- version.php
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git am
설명 보기 ▼
git am
Apply patch files and create a commit. Useful when receiving commits via email.
See also: `git format-patch`.
git am {{path/to/file.patch}}
Apply and commit changes following a local patch file:
curl {{[-L|--location]}} {{https://example.com/file.patch}} | git am
Apply and commit changes following a remote patch file:
git am --abort
Abort the process of applying a patch file:
git cherry-pick
설명 보기 ▼
git cherry-pick
Apply the changes introduced by existing commits to the current branch.
To apply changes to another branch, first use `git checkout` to switch to the desired branch.
git cherry-pick {{commit}}
Apply a commit to the current branch:
git cherry-pick {{start_commit}}~..{{end_commit}}
Apply a range of commits to the current branch (see also: `git rebase --onto`):
git cherry-pick {{commit1 commit2 ...}}
Apply multiple (non-sequential) commits to the current branch:
git format-patch
설명 보기 ▼
git format-patch
Prepare `.patch` files. Useful when emailing commits elsewhere.
See also: `git am`.
git format-patch {{origin}}
Create an auto-named `.patch` file for all the unpushed commits:
git format-patch {{revision_1}}..{{revision_2}}
Write a `.patch` file for all the commits between 2 revisions to `stdout`:
git format-patch -{{n}}
Write a `.patch` file for the `n` latest commits:
git submodule
설명 보기 ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
php
설명 보기 ▼
php
PHP 명령줄 인터페이스.
더 많은 정보: <https://www.php.net/manual/en/features.commandline.options.php>.
php {{path/to/file}}
PHP 스크립트를 구문 분석하고 실행:
php {{[-l|--syntax-check]}} {{path/to/file}}
PHP 스크립트의 문법 검사(즉, 린트):
php {{[-a|--interactive]}}
PHP를 대화형으로 실행:
