fmsystem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Fmsystem-commits] [16314] remove obsolete


From: sigurdne
Subject: [Fmsystem-commits] [16314] remove obsolete
Date: Wed, 15 Feb 2017 13:15:28 -0500 (EST)

Revision: 16314
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=16314
Author:   sigurdne
Date:     2017-02-15 13:15:27 -0500 (Wed, 15 Feb 2017)
Log Message:
-----------
remove obsolete

Removed Paths:
-------------
    trunk/eventplannerfrontend/inc/custom/default/MinId.php

Deleted: trunk/eventplannerfrontend/inc/custom/default/MinId.php
===================================================================
--- trunk/eventplannerfrontend/inc/custom/default/MinId.php     2017-02-15 
18:09:12 UTC (rev 16313)
+++ trunk/eventplannerfrontend/inc/custom/default/MinId.php     2017-02-15 
18:15:27 UTC (rev 16314)
@@ -1,304 +0,0 @@
-<?php
-       /**
-        * phpGroupWare
-        *
-        * @author Sigurd Nes <address@hidden>
-        * @copyright Copyright (C) 2010 Free Software Foundation, Inc. 
http://www.fsf.org/
-        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
-        * @internal Development of this application was funded by 
http://www.bergen.kommune.no/
-        * @package phpgroupware
-        * @subpackage communication
-        * @category core
-        * @version $Id: Altinn_Bergen_kommune.php 4887 2010-02-23 10:33:44Z 
sigurd $
-        */
-       /*
-         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, either version 2 of the License, or
-         (at your option) any later version.
-
-         This program is distributed in the hope that it will be useful,
-         but WITHOUT ANY WARRANTY; without even the implied warranty of
-         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-         GNU General Public License for more details.
-
-         You should have received a copy of the GNU General Public License
-         along with this program.  If not, see <http://www.gnu.org/licenses/>.
-        */
-
-       /**
-        * Wrapper for custom methods
-        *
-        * @package phpgroupware
-        * @subpackage bookingfrontend
-        */
-
-       /**
-        * START WRAPPER
-        */
-       class booking_external_user
-       {
-
-               /**
-                * The resulting external user
-                * @access public
-                * @var string
-                */
-               public $login = 0;
-
-               /**
-                * Debug for testing
-                * @access public
-                * @var bool
-                */
-               public $debug = false;
-               public $orgs = array();
-
-               public function __construct( $wsdl, $options, $userid, $debug = 
false )
-               {
-                       if ($debug)
-                       {
-                               $this->debug = true;
-                       }
-                       try
-                       {
-                               $BrukerService = new BrukerService($wsdl, 
$options);
-                       }
-                       catch (Exception $e)
-                       {
-                               if ($this->debug)
-                               {
-                                       echo $e->getMessage();
-                                       echo '<br>wsdl: ' . $wsdl;
-                                       echo '<br>options:';
-                                       _debug_array($options);
-                               }
-                       }
-
-                       if (isset($BrukerService) && $BrukerService)
-                       {
-                               $ctx = new UserContext();
-
-                               $ctx->appid = 'portico';
-                               $ctx->onBehalfOfId = $userid;
-                               $ctx->userid = $userid;
-                               $ctx->transactionid = 
$GLOBALS['phpgw_info']['server']['install_id']; // KAN UTELATES. BENYTTES I.F.M 
SUPPORT. LEGG INN EN FOR DEG UNIK ID.
-
-                               $request = new retrieveBruker();
-                               $request->userContext = $ctx;
-                               $request->userid = $userid;
-
-                               $response = 
$BrukerService->retrieveBruker($request);
-                               $Bruker = $response->return;
-                               $this->login = $Bruker->ou; // organisasjons nr
-                       }
-               }
-       }
-       /**
-        * END WRAPPER - custom code beyond this point
-        */
-       /**
-        * soap client for altinn supported external login service at Bergen 
Kommune
-        * this code is generated by the 
http://code.google.com/p/wsdl2php-interpreter/ 
-        *
-        * @package phpgroupware
-        * @subpackage bookingfrontend
-        */
-
-       /**
-        * Bruker
-        */
-       class Bruker
-       {
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $uid;
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $mail;
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $preferedLocal;
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $givenName;
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $sn;
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $cn;
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $ou;
-
-       }
-
-       /**
-        * UserContext
-        */
-       class UserContext
-       {
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $userid;
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $onBehalfOfId;
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $appid;
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $transactionid;
-
-       }
-
-       /**
-        * retrieveBruker
-        */
-       class retrieveBruker
-       {
-
-               /**
-                * @access public
-                * @var UserContext
-                */
-               public $userContext;
-
-               /**
-                * @access public
-                * @var string
-                */
-               public $userid;
-
-       }
-
-       /**
-        * retrieveBrukerResponse
-        */
-       class retrieveBrukerResponse
-       {
-
-               /**
-                * @access public
-                * @var Bruker
-                */
-               public $return;
-
-       }
-
-       /**
-        * BrukerService
-        * @author WSDLInterpreter
-        */
-       class BrukerService extends SoapClient
-       {
-
-               /**
-                * Default class map for wsdl=>php
-                * @access private
-                * @var array
-                */
-               private static $classmap = array
-                       (
-                       "Bruker" => "Bruker",
-                       "UserContext" => "UserContext",
-                       "retrieveBruker" => "retrieveBruker",
-                       "retrieveBrukerResponse" => "retrieveBrukerResponse",
-               );
-
-               /**
-                * Constructor using wsdl location and options array
-                * @param string $wsdl WSDL location for this service
-                * @param array $options Options for the SoapClient
-                */
-               public function __construct( $wsdl = '', $options = array() )
-               {
-                       foreach (self::$classmap as $wsdlClassName => 
$phpClassName)
-                       {
-                               if 
(!isset($options['classmap'][$wsdlClassName]))
-                               {
-                                       $options['classmap'][$wsdlClassName] = 
$phpClassName;
-                               }
-                       }
-                       parent::__construct($wsdl, $options);
-               }
-
-               /**
-                * Checks if an argument list matches against a valid argument 
type list
-                * @param array $arguments The argument list to check
-                * @param array $validParameters A list of valid argument types
-                * @return boolean true if arguments match against 
validParameters
-                * @throws Exception invalid function signature message
-                */
-               public function _checkArguments( $arguments, $validParameters )
-               {
-                       $variables = "";
-                       foreach ($arguments as $arg)
-                       {
-                               $type = gettype($arg);
-                               if ($type == "object")
-                               {
-                                       $type = get_class($arg);
-                               }
-                               $variables .= "(" . $type . ")";
-                       }
-                       if (!in_array($variables, $validParameters))
-                       {
-                               throw new Exception("Invalid parameter types: " 
. str_replace(")(", ", ", $variables));
-                       }
-                       return true;
-               }
-
-               /**
-                * Service Call: retrieveBruker
-                * Parameter options:
-                * (retrieveBruker) parameters
-                * @param mixed,... See function description for parameter 
options
-                * @return retrieveBrukerResponse
-                * @throws Exception invalid function signature message
-                */
-               public function retrieveBruker( $mixed = null )
-               {
-                       $validParameters = array(
-                               "(retrieveBruker)",
-                       );
-                       $args = func_get_args();
-                       $this->_checkArguments($args, $validParameters);
-                       return $this->__soapCall("retrieveBruker", $args);
-               }
-       }
\ No newline at end of file




reply via email to

[Prev in Thread] Current Thread [Next in Thread]