<?php /**

*/

use Edoceo\Radix;

$_ENV['h1'] = $_ENV['title'] = 'Training :: Plants';

?>

These videos are designed so you can watch them in order. The videos are short; you could watch them all in less than 15 minutes.

We start with general operations and proceed through: harvest, cure, cloning, converting and destroying waste.

<?php

$vid_list = array(

'overview' => array(
    'name' => 'Plant Operations',
    'file' => 'Plant_Overview.webm', //<iframe width="640" height="390" src="//www.youtube.com/embed/pTY55dE7EFA" frameborder="0" allowfullscreen></iframe>',
),

'mother' => array(
    'name' => 'Converting to Mother',
    'file' => 'Plant_Mother.webm',
),

'move' => array(
    'name' => 'Moving Plants',
    'file' => 'Plant_Move.webm',
),

'harvest' => array(
    'name' => 'Plants Harvest',
    'note' => 'The Plant Harvest process is also known as a Wet Collection',
    'file' => 'Plant_Harvest.webm',
),

'harvest-undo' => array(
    'name' => 'Plant Harvest - Undo',
    'file' => 'Plant_Harvest_Undo.webm',
),

'harvest_adjust' => array(
    'name' => 'Adjusting the Harvest Yields',
    'file' => 'Plant_Yield_Modify.webm',
),

'cure' => array(
    'name' => 'Curing Wet Materials',
    'file' => 'Plant_Cure.webm',
),

'cure_adjust' => array(
    'name' => 'Adjusting Cure Weights',
    'file' => 'Plant_Cure_Adjust.webm',
),

'clone' => array(
    'name' => 'Create Clones',
    'file' => 'Plant_Create_Clone.webm',
),

'convert' => array(
    'name' => 'Converting to Inventory',
    'file' => 'Plant_Convert_to_Inventory.webm',
),

'waste' => array(
    'name' => 'Daily Waste',
    'file' => 'Plant_Daily_Waste.webm',
),

'undo' => array(
    'name' => 'Undo Plant Creation',
    'file' => 'Plant_Create_Undo.webm',
),

'destroy-schedule' => array(
    'name' => 'Plant Destruction - Scheduling',
    'file' => 'Plant_Destroy_Schedule.webm',
),

'destroy-confirm' => array(
    'name' => 'Plant Destruction - Confirmation',
    'file' => 'Plant_Destroy_Confirm.webm',
),

'download' => array(
    'name' => 'Downloading Plant Data',
    'file' => 'Plant_Download_Data.webm',
),

);

foreach ($vid_list as $vid_stub => $vid_data) { $vid_data['stub'] = $vid_stub; echo Radix::block('training-video', $vid_data);

}