芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/portal.pulsehost.co.uk/modules/widgets/Activity.php
0, 'limitnum' => 10)); } public function generateOutput($data) { $log = new ActivityLog(); $output = ''; foreach ($data['activity']['entry'] as $entry) { $date = Carbon::createFromFormat('Y-m-d H:i:s', $entry['date']); $description = $entry['description']; if ($entry['userId']) { $userLabel = ' - User ID: ' . $entry['userId']; if (!strpos($description, $userLabel)) { $description .= $userLabel; } } $output .= '
' . $date->diffForHumans() . '
' . $entry['username'] . '
' . $log->autoLink($description) . '
' . $entry['ipaddress'] . '
'; } return <<
{$output}
EOF; } }