does view change log is available in task module

does view change log is available in task module,if there what will the navigation step to go there

Not out of the box, although may just be the case of adding the button to the detailviewdefs.php/editviewdefs.php

Dear Sir/Madam,

Have you manage to add the change log into the task module? I am currently facing this problem too.

Thank You

Hi,

Only thing you need to do is make auditable true.
You can do it by adding following lines of code to this file’s array.

ā€˜audited’=>true,

This is the file path.

modules/Tasks/vardefs.php

After that you can make fields auditable using studio or even in this vardef.php files.

cheers !!!

1 Like

Had to do this again today for Projects… did it before when I first upgraded to 7.1… anyway, wish this was configurable in the admin panel!

Thanks,
sieberta

It seems not to be configurable in the Admin panel, but there is an upgrade-safe way to implement it:

Add a new file named as you wish (e.g. ā€œaudited_true.phpā€) to the folder

/custom/Extension/modules/Project/Ext/Vardefs/

with the following lines:

<?php

$dictionary['Project']['audited']=true;

?>

after a quick-repair it should work, and it’s upgrade-safe!

Unfortunately I couldn’t get this wo work for ProjectTasks. Seems to be something special about that module…

To make it show up in ProjectTask detailview (after adding the vardef file), you also have to change the detailviewdefs.php file in

/custom/modules/ProjectTask/metadata/

Find this statement:

'hideAudit' => false,

and change false to true. -> rebuild.

1 Like