- CakePHP 2.9.0 or greater.
- PHP 7.0.0 or greater.
Clone/Copy the files in this directory into app/Plugin/Edexml
Ensure the plugin is loaded in app/Config/bootstrap.php
by calling:
CakePlugin::load('Edexml');
First include the plugin model in your controller:
public $uses = ['Edexml.Edexml'];
Validate Edexml file:
$this->Edexml->saveAll($this->request->data, ['validate' => 'only']);
And in the corresponding view:
echo $this->Form->create('Edexml.Edexml', ['type' => 'file']);
echo $this->Form->input('file', ['type' => 'file']);
echo $this->Form->end(__('Submit'));
First include the plugin model in your controller:
public $uses = ['Edexml.Edexml'];
Convert the Edexml file:
$filename = $this->request->data('Edexml.file.tmp_name');
$data = $this->Edexml->parseToArray($filename);
$data = $this->Edexml->convert($data);