drupal_install_mkdir

Versions
5 – 7
drupal_install_mkdir($file, $mask, $message = TRUE)

Create a directory with specified permissions.

Parameters

file The name of the directory to create;

mask The permissions of the directory to create.

$message (optional) Whether to output messages. Defaults to TRUE.

Return value

TRUE/FALSE whether or not the directory was successfully created.

Code

includes/install.inc, line 502

<?php
function drupal_install_mkdir($file, $mask, $message = TRUE) {
  $mod = 0;
  $masks = array(FILE_READABLE, FILE_WRITABLE, FILE_EXECUTABLE, FILE_NOT_READABLE, FILE_NOT_WRITABLE, FILE_NOT_EXECUTABLE);
  foreach ($masks as $m) {
    if ($mask & $m) {
      switch ($m) {
        case FILE_READABLE:
          $mod += 444;
          break;
        case FILE_WRITABLE:
          $mod += 222;
          break;
        case FILE_EXECUTABLE:
          $mod += 111;
          break;
      }
    }
  }

  if (@mkdir($file, intval("0$mod", 8))) {
    return TRUE;
  }
  else {
    return FALSE;
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.