Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 477 Bytes

DrupalPractice.FunctionDefinitions.InstallT.md

File metadata and controls

11 lines (6 loc) · 477 Bytes

Pattern: Use of t()/st() in hook_install()/hook_requirements()

Issue: -

Description

Checks that t() and st() are not used in hook_install() and hook_requirements(). Use $t = get_t() to retrieve the appropriate localization function name.

Further Reading