MediaWiki  1.34.0
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 }
ComposerVendorHtaccessCreator\onEvent
static onEvent()
Handle post-install-cmd and post-update-cmd hooks.
Definition: ComposerVendorHtaccessCreator.php:34
ComposerVendorHtaccessCreator
Copyright (C) 2017 Kunal Mehta legoktm@member.fsf.org
Definition: ComposerVendorHtaccessCreator.php:29