Ordermanager/src/Modules/Application/Model/d3_oxuser_ordermanager.php

37 lines
976 B
PHP
Raw Permalink Normal View History

2017-12-20 13:43:20 +01:00
<?php
2019-05-15 11:31:18 +02:00
/**
2017-12-20 13:43:20 +01:00
* This Software is the property of Data Development and is protected
* by copyright law - it is NOT Freeware.
*
* Any unauthorized use of this software without a valid license
* is a violation of the license agreement and will be prosecuted by
* civil and criminal law.
*
* http://www.shopmodule.com
*
2019-05-15 11:31:18 +02:00
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
2017-12-20 13:43:20 +01:00
* @link http://www.oxidmodule.com
*/
namespace D3\Ordermanager\Modules\Application\Model;
class d3_oxuser_ordermanager extends d3_oxuser_ordermanager_parent
{
/**
2021-03-16 10:10:19 +01:00
* @param string $sParamName
2017-12-20 13:43:20 +01:00
*
* @return mixed
*/
2021-03-16 10:10:19 +01:00
public function __get($sParamName)
2017-12-20 13:43:20 +01:00
{
2021-03-16 10:10:19 +01:00
$mContent = parent::__get($sParamName);
2017-12-20 13:43:20 +01:00
2021-03-16 10:10:19 +01:00
if (false == $mContent && $this->{$sParamName}) {
return $this->{$sParamName};
2017-12-20 13:43:20 +01:00
}
return $mContent;
}
}