Server IP : 184.154.167.98 / Your IP : 3.15.15.91 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/tampico1900/apps/activity/js/ |
Upload File : |
/* * Copyright (c) 2015 * * This file is licensed under the Affero General Public License version 3 * or later. * * See the COPYING-README file. * */ (function() { /** * @class OCA.Activity.ActivityModel * @classdesc * * Displays activity information for a given file * */ var ActivityModel = OC.Backbone.Model.extend(/** @lends OCA.Activity.ActivityModel.prototype */{ /** * * @returns int UNIX milliseconds timestamp */ getUnixMilliseconds: function () { if (_.isUndefined(this.unixMilliseconds)) { this.unixMilliseconds = moment(this.get('datetime')).valueOf(); } return this.unixMilliseconds; }, /** * @returns string E.g. "seconds ago" */ getRelativeDate: function () { return OC.Util.relativeModifiedDate(this.getUnixMilliseconds()); }, /** * @returns string E.g. "April 26, 2016 10:53 AM" */ getFullDate: function () { return OC.Util.formatDate(this.getUnixMilliseconds()); }, /** * @returns bool */ isMonochromeIcon: function () { return this.get('type') !== 'file_created' && this.get('type') !== 'file_deleted' && this.get('type') !== 'favorite'; } }); OCA.Activity = OCA.Activity || {}; OCA.Activity.ActivityModel = ActivityModel; })();