Hey people,
Have made the changes desired but they are .
But still some work is done.
For all these who might have the same issue here some details that might help you out.
We need manipulate and add the fields so that they are reflected in the calendar.
/modules/Calls/CallFormBase.php
Line Number: 115
if you add anything here that would be reflected in the calender module too.
HTML Code:
<tr>
<td colspan="2">
<span class="dataLabel">Description: </span>
<tr><td><textarea name='desc'> </textarea></td></tr>
</td>
</tr> This textarea for description will appear in the calendar module.
Now when Schedule Call is select
in the CallBaseForm.php
function handleSave () this function will be called.
near line number : 405 add
PHP Code:
$focus->description = $_REQUEST['desc'];
This same needs to be done when schedule meeting but in
modules/Meetings/MeetingBaseForm.php
and it near line number: 332
PHP Code:
$focus->description = $_REQUEST['desc'];
Hope This is helpful!!!
Bookmarks