removed mods directory from the ATutor codebase
[atutor.git] / mods / photos / module_install.php
diff --git a/mods/photos/module_install.php b/mods/photos/module_install.php
deleted file mode 100644 (file)
index 1392c38..0000000
+++ /dev/null
@@ -1,117 +0,0 @@
-<?php
-/***********************************************************************/
-/* ATutor                                                                                                                         */
-/***********************************************************************/
-/* Copyright (c) 2002-2009                                                                                        */
-/* Adaptive Technology Resource Centre / Inclusive Design Institution  */
-/* http://atutor.ca                                                                                                       */
-/*                                                                                                                                        */
-/* This program is free software. You can redistribute it and/or          */
-/* modify it under the terms of the GNU General Public License            */
-/* as published by the Free Software Foundation.                                          */
-/***********************************************************************/
-// $Id$
-
-/*******
- * the line below safe-guards this file from being accessed directly from
- * a web browser. It will only execute if required from within an ATutor script,
- * in our case the Module::install() method.
- */
-if (!defined('AT_INCLUDE_PATH')) { exit; }
-
-/*******
- * Note: the many options for these variables are used to decrease confusion.
- *       TRUE | FALSE | 1 will be the convention.
- *
- * $_course_privilege
- *     specifies the type of instructor privilege this module uses.
- *     set to empty | FALSE | 0   to disable any privileges.
- *     set to 1 | AT_PRIV_ADMIN   to use the instructor only privilege.
- *     set to TRUE | 'new'        to create a privilege specifically for this module:
- *                                will make this module available as a student privilege.
- *
- * $_admin_privilege
- *    specifies the type of ATutor administrator privilege this module uses.
- *    set to FALSE | AT_ADMIN_PRIV_ADMIN   to use the super administrator only privilege.
- *    set to TRUE | 'new'                  to create a privilege specifically for this module:
- *                                         will make this module available as an administrator privilege.
- *
- *
- * $_cron_interval
- *    if non-zero specifies in minutes how often the module's cron job should be run.
- *    set to 0 or not set to disable.
- */
-$_course_privilege = TRUE; // possible values: FALSE | AT_PRIV_ADMIN | TRUE
-
-
-/********
- * the following code is used for creating a module-specific directory.
- * it generates appropriate error messages to aid in its creation.
- */
-$directory = AT_PA_CONTENT_DIR;
-
-/**
- * check if GD is installed and is version 2 or higher
- */
-if (! extension_loaded('gd')) {
-       $msg->addError(array('MODULE_INSTALL', '<li>This module requires the GD Library. Please <a href="http://www.boutell.com/gd/" title="Link to GD web site">install it</a>.</li>'));
-} else {
-       if (function_exists('gd_info')) {
-               // use gd_info if possible...
-               $gd_info = gd_info();
-               preg_match('/\d/', $gd_info['GD Version'], $match);
-               if ($match[0] < 2) {
-                       $msg->addError(array('MODULE_INSTALL', '<li>This module requires GD version 2 or higher. Please <a href="http://www.boutell.com/gd/" title="Link to GD web site">install it</a>.</li>'));
-               } 
-               //check GD support 
-               $supported_images = array();
-               if ($gd_info['GIF Create Support']) {
-                       $supported_images[] = 'gif';
-               }
-               if ($gd_info['JPG Support']) {
-                       $supported_images[] = 'jpg';
-               }
-               if ($gd_info['PNG Support']) {
-                       $supported_images[] = 'png';
-               }
-               if (!$supported_images) {
-                       $msg->addError(array('MODULE_INSTALL', '<li>This module must be able to support gif/jpg/png.  Please recompile your GD library with those types supported.</li>'));
-               }
-       } else {
-               // ...otherwise use phpinfo().
-               ob_start();
-               phpinfo(8);
-               $info = ob_get_contents();
-               ob_end_clean();
-               $info = stristr($info, 'gd version');
-               preg_match('/\d/', $info, $match);
-               if ($match[0] < 2) {
-                       $msg->addError(array('MODULE_INSTALL', '<li>This module requires the GD Library version 2 or higher. Please <a href="http://www.boutell.com/gd/" title="Link to GD web site">install it</a>.</li>'));
-          }
-       }
-}
-
-// check if the directory is writeable
-if (!is_dir($directory) && !@mkdir($directory)) {
-       $msg->addError(array('MODULE_INSTALL', '<li>'.$directory.' does not exist. Please create it.</li>'));
-} else if (!is_writable($directory) && @chmod($directory, 0666)) {
-       $msg->addError(array('MODULE_INSTALL', '<li>'.$directory.' is not writeable. On Unix issue the command <kbd>chmod a+rw</kbd>.</li>'));
-}
-
-/******
- * the following code checks if there are any errors (generated previously)
- * then uses the SqlUtility to run any database queries it needs, ie. to create
- * its own tables.
- */
-if (!$msg->containsErrors() && file_exists(dirname(__FILE__) . '/module.sql')) {
-       // deal with the SQL file:
-       require(AT_INCLUDE_PATH . 'classes/sqlutility.class.php');
-       $sqlUtility =& new SqlUtility();
-
-       /*
-        * the SQL file could be stored anywhere, and named anything, "module.sql" is simply
-        * a convention we're using.
-        */
-       $sqlUtility->queryFromFile(dirname(__FILE__) . '/module.sql', TABLE_PREFIX);
-}
-?>