MediaWiki REL1_31
ComposerVendorHtaccessCreator.php
Go to the documentation of this file.
1<?php
30
34 public static function onEvent() {
35 $fname = dirname( dirname( __DIR__ ) ) . "/vendor/.htaccess";
36 if ( file_exists( $fname ) ) {
37 // Already exists
38 return;
39 }
40
41 file_put_contents( $fname, "Deny from all\n" );
42 }
43}
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition Setup.php:112
Copyright (C) 2017 Kunal Mehta legoktm@member.fsf.org
static onEvent()
Handle post-install-cmd and post-update-cmd hooks.