customer_activity.php (2629B)
1 <?php 2 // Heading 3 $_['heading_title'] = 'Customer Activity Report'; 4 5 // Text 6 $_['text_extension'] = 'Extensions'; 7 $_['text_edit'] = 'Edit Customer Activity Report'; 8 $_['text_success'] = 'Success: You have modified customer activity report!'; 9 $_['text_filter'] = 'Filter'; 10 $_['text_activity_register'] = '<a href="customer_id=%d">%s</a> registered for an account.'; 11 $_['text_activity_edit'] = '<a href="customer_id=%d">%s</a> updated their account details.'; 12 $_['text_activity_password'] = '<a href="customer_id=%d">%s</a> updated their account password.'; 13 $_['text_activity_reset'] = '<a href="customer_id=%d">%s</a> reset their account password.'; 14 $_['text_activity_login'] = '<a href="customer_id=%d">%s</a> logged in.'; 15 $_['text_activity_forgotten'] = '<a href="customer_id=%d">%s</a> requested a reset password.'; 16 $_['text_activity_address_add'] = '<a href="customer_id=%d">%s</a> added a new address.'; 17 $_['text_activity_address_edit'] = '<a href="customer_id=%d">%s</a> updated their address.'; 18 $_['text_activity_address_delete'] = '<a href="customer_id=%d">%s</a> deleted one of their addresses.'; 19 $_['text_activity_return_account'] = '<a href="customer_id=%d">%s</a> submitted a product return.'; 20 $_['text_activity_return_guest'] = '%s submitted a product return.'; 21 $_['text_activity_order_account'] = '<a href="customer_id=%d">%s</a> created a <a href="order_id=%d">new order</a>.'; 22 $_['text_activity_order_guest'] = '%s created a <a href="order_id=%d">new order</a>.'; 23 $_['text_activity_affiliate_add'] = '<a href="customer_id=%d">%s</a> registered for a affiliate account.'; 24 $_['text_activity_affiliate_edit'] = '<a href="customer_id=%d">%s</a> updated their affiliate details.'; 25 $_['text_activity_transaction'] = '<a href="customer_id=%d">%s</a> received commission from an new <a href="order_id=%d">order</a>.'; 26 27 // Column 28 $_['column_customer'] = 'Customer'; 29 $_['column_comment'] = 'Comment'; 30 $_['column_ip'] = 'IP'; 31 $_['column_date_added'] = 'Date Added'; 32 33 // Entry 34 $_['entry_customer'] = 'Customer'; 35 $_['entry_ip'] = 'IP'; 36 $_['entry_date_start'] = 'Date Start'; 37 $_['entry_date_end'] = 'Date End'; 38 $_['entry_status'] = 'Status'; 39 $_['entry_sort_order'] = 'Sort Order'; 40 41 // Error 42 $_['error_permission'] = 'Warning: You do not have permission to modify customer activity report!';