Giso Stallenberg
Giso Stallenberg
@williamdes and @ibennetch cool to see this got your attention. I hope you can offer a solution at the license level, which would avoid changing this codebase.
@bluebaroncanada is this still a problem? Can you check with the most recent version and maybe add a PR with a solution?
If this is an acceptable change I will add tests. To add some context: I have a set of test cases that share some different settings and would like to...
> also, it's not so "automatic" What do you mean? I meant: If you want to audit specific relationship attach/detachments, you can implement it in the main point where your...
@nikspyratos `MorphToMany` extends `BelongsToMany` and these are also to audit a `BelongsToMany` relation.
What still needs to be done to merge this PR?
That is very understandable. I did not mean it as a negative comment. I actually meant "If I can help in any way..."
@lucaswhob something like this? ```php $objReader = \PhpOffice\PhpWord\IOFactory::createReader('Word2007'); $phpWord = $objReader->load('my/file.docx'); // instance of \PhpOffice\PhpWord\PhpWord $text = ''; foreach ($phpWord->getSections() as $section) { foreach ($section->getElements() as $element) { if ($element...
@nikunjbhatt This was just a simple example. Sections seem to also contain TextRun's (these are containers), which contain sub elements. Something like this should work: ```php
@williamdes Any update on this?