You are here

public function Gardener::setCreated in Backup and migrate prune 7.2

Same name and namespace in other branches
  1. 7 class/Gardener.php \Gardener::setCreated()

Set the creation date for the gardener

Parameters

$created: The created date associated with this gardener

2 calls to Gardener::setCreated()
Gardener::getCreated in class/Gardener.php
Get the creation date for the gardener
Gardener::load in class/Gardener.php
Load the settings of a gardener and return an instance of it.

File

class/Gardener.php, line 420
Gardener class implementation file

Class

Gardener
Gardener class implementation

Code

public function setCreated($created = '') {
  $this->created = $created;
}