-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I use the file in a controller? #6
Comments
I have not understood what do u want to do. Could u explain/give me an example? |
I wanna do this: http://phpword.readthedocs.org/en/latest/templates-processing.html Which means: ´´´ Where Template.docx is the file I uploaded to a model, using your module;) |
Now u can use model->files[0]->path // for single file or foreach ($model->files as $file) {
echo $file->path;
} Is that all you need to? |
Jep! exactly! ;) THanks a Lot |
e.g. I wanna open a word file (attachement) and then wanna replace stuff inside to deploy to user?
Thanks Philipp
The text was updated successfully, but these errors were encountered: