mirror of
https://github.com/getnamingo/registry.git
synced 2025-07-20 01:25:56 +02:00
Added launch phase type/category
This commit is contained in:
parent
141dd5fd3b
commit
e2d040cf29
4 changed files with 23 additions and 2 deletions
|
@ -1045,6 +1045,7 @@ class SystemController extends Controller
|
|||
$sData['tldid'] = filter_var($data['tldid'], FILTER_SANITIZE_NUMBER_INT);
|
||||
$sData['extension'] = substr(trim($data['extension']), 0, 10);
|
||||
$sData['phaseName'] = substr(trim($data['phaseName']), 0, 255);
|
||||
$sData['phaseCategory'] = substr(trim($data['phaseCategory']), 0, 255);
|
||||
$sData['phaseType'] = substr(trim($data['phaseType']), 0, 255);
|
||||
$sData['phaseDescription'] = substr(trim($data['phaseDescription']), 0, 1000);
|
||||
$sData['phaseStart'] = str_replace('T', ' ', $data['phaseStart']) . ':00';
|
||||
|
@ -1104,6 +1105,7 @@ class SystemController extends Controller
|
|||
'tld_id' => $sData['tldid'],
|
||||
'phase_name' => $sData['phaseName'],
|
||||
'phase_type' => $sData['phaseType'],
|
||||
'phase_category' => $sData['phaseCategory'],
|
||||
'phase_description' => $sData['phaseDescription'],
|
||||
'start_date' => $sData['phaseStart'],
|
||||
'end_date' => $sData['phaseEnd'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue