started adding email processing capabilities to cs
This commit is contained in:
parent
4c3d3c68e1
commit
504de54d61
10 changed files with 352 additions and 97 deletions
|
|
@ -1024,6 +1024,24 @@ sub indexContent {
|
|||
}
|
||||
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 logView ( )
|
||||
|
||||
Logs the view of this asset to the passive profiling mechanism.
|
||||
|
||||
=cut
|
||||
|
||||
sub logView {
|
||||
my $self = shift;
|
||||
if ($self->session->setting->get("passiveProfilingEnabled")) {
|
||||
WebGUI::PassiveProfiling::add($self->session,$self->getId);
|
||||
WebGUI::PassiveProfiling::addPage($self->session,$self->getId) if ($self->get("className") eq "WebGUI::Asset::Wobject::Layout");
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
=head2 manageAssets ( )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue