コード例 #1
0
ファイル: Transcript.php プロジェクト: k-hasan-19/wiki
/**
 * Callback function to validate data
 * @return bool must return true or other hooks don't get called
 */
function validateTranscript($editPage, $textBox1, $section, &$hookError)
{
    $ns = $editPage->mTitle->getNamespace();
    if ($ns == NS_TRANSCRIPT) {
        $transcript = new Transcript($editPage->mTitle->getText());
        $transcript->validate($textBox1, $section, $hookError);
    }
    return true;
}