Skip to content
Snippets Groups Projects
Select Git revision
  • bd6aaf21c13f307a830ec0c8e16734ffa20954b8
  • master default protected
  • 7771-harden-postgres-backup
  • pgsql-dump-with-snapshots
  • update-colors
  • update-docs-css
  • usb-repair-stick
  • desktop-notification
  • 7000-corrections
  • db-detector
10 results

sqlite.sh

Blame
  • base.class.php 438 B
    <?php
    
    require_once 'user.class.php';
    
    /**
     * base class for available variables and objects in other objects
     *
     * @author hahn
     */
    class base
    {
    
        /**
         * logged in user as user object
         * @var user
         */
        public user $oUser;
    
        /**
         * init user with optional given user
         * @param type $sUser
        public function __construct($a=false){
            $this->oUser=new user();
        }
         */
    
    }