File path: dist/twist/Core/Models/Settings.model.php
Namespace: Twist\Core\Models
get
— Get the setting value that is associated with the provided key, is the key does not exists NULL will be returned.
Name | Description |
---|---|
$strKey | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strKey = 'foo';
//Call the function get with the example vars
$resSettings = new \Twist\Core\Models\Settings();
$resSettings -> get($strKey);