<?php
/**
* __ _ ___ ___ ___ ___ ___ ____ _ __ ___ ___
* / _` |/ / / __/ _ \ / _ \ / / / __/| '_ ` _ \ / /
* | (_| |\ \| (_| (_) | (_) |\ \ | (__ | | | | | |\ \
* \__,_|/__/ \___\___/ \___/ /__/ \___\|_| |_| |_|/__/
*
*
************************************************************************************
* @ASCOOS-NAME : ASCOOS CMS 24' *
* @ASCOOS-VERSION : 24.0.0 *
* @ASCOOS-CATEGORY : Framework (Frontend and Administrator Side) *
* @ASCOOS-CREATOR : Drogidis Christos *
* @ASCOOS-SITE : www.ascoos.com *
* @ASCOOS-LICENSE : [Commercial] http://docs.ascoos.com/lics/ascoos/AGL.html *
* @ASCOOS-COPYRIGHT : Copyright (c) 2007 - 2024, AlexSoft Software. *
************************************************************************************
*
* @package : ASCOOS FRAMEWORK Examples
* @subpackage : Sets a property at any depth within the properties array.
* @source : afw-examples/classes/TObject/TObject.setDeepProperties.php
* @version : 24.0.7
* @created : 2024-07-01 20:00:00 UTC+3
* @updated : 2024-12-18 07:00:00 UTC+3
* @author : Drogidis Christos
* @authorSite : www.alexsoft.gr
* @license : AGL-F
*
* @since PHP 8.2.0
*/
declare(strict_types=1);
require_once "../../autoload.php";
use ASCOOS\FRAMEWORK\Kernel\Core\TObject;
class TExampleObject extends TObject
{
/**
* Constructor.
*
* @desc <English> Initialize the class with given properties.
* @desc <Greek> ??????????? ??? ????? ?? ??? ??????????? ?????????.
*
* @param array $properties <English> An associative array of properties to initialize the class with.
* <Greek> ???? ????????????? ??????? ????????? ??? ??? ???????????? ??? ??????.
*/
public function __construct(array $properties = [])
{
parent::__construct($properties);
}
}
/*
<English> Example of use the TExampleObject class
<Greek> ?????????? ?????? ??? ?????? TExampleObject
*/
$example = new TExampleObject([
'config' => [
'extensions' => [
'subExtension1' => [],
'subExtension2' => []
]
]
]);
/*
<English> Set a deep property 'version' for 'subExtension1' in the 'extensions' array.
<Greek> ??????? ???? ?????? ????????? 'version' ??? ?? 'subExtension1' ???? ?????? 'extensions'.
*/
$example->setDeepProperty(['config', 'extensions', 'subExtension1', 'version'], '1.0.0');
/*
<English> Set a deep property 'enabled' for 'subExtension2' in the 'extensions' array.
<Greek> ??????? ???? ?????? ????????? 'enabled' ??? ?? 'subExtension2' ???? ?????? 'extensions'.
*/
$example->setDeepProperty(['config', 'extensions', 'subExtension2', 'enabled'], true);
/*
<English> Set a deep property 'newProperty' at the 'config' level.
<Greek> ??????? ???? ?????? ????????? 'newProperty' ??? ??????? ??? 'config'.
*/
$example->setDeepProperty(['config', 'newProperty'], 'newValue');
/*
<English> Print the properties for control
<Greek> ???????? ??? ????????? ??? ??????
*/
print_r($example->getProperties());
?>
|