ผู้เขียน หัวข้อ: Remove Post Modified  (อ่าน 759 ครั้ง)

0 สมาชิก และ 1 บุคคลทั่วไป กำลังดูหัวข้อนี้

ออฟไลน์ smf

  • [color=green][i]"ถ้าคุณไม่สามารถอธิบายอย่างง่ายๆ ให้คนอื่นเข้าใจได้แล้วล่ะก็ แสดงว่าคุณยังเข้าใจมันไม่ดีพอ"[/i][/color]
  • Administrator
  • Hero Member
  • *****
  • กระทู้: 1,368
  • พอยท์: 5
    • ดูรายละเอียด
    • pordoo.com
    • อีเมล์
Remove Post Modified
« เมื่อ: 8 ตุลาคม 2015, 20:53:29 »
Mod Name:Remove Post Modified (Last Edit) Time
http://custom.simplemachines.org/mods/index.php?mod=982

ม็อดนี้จะทำให้Adminสามารถลบ"Last edit time"ออกจากโพสต์ได้



File Edits


./index.php

Find:
โค๊ด: [Select]
'reminder' => array('Reminder.php', 'RemindMe'),Add After:
โค๊ด: [Select]
'removemodified' => array('RemoveModified.php', 'RemoveModified'),
./Themes/default/Display.template.php

Find:
โค๊ด: [Select]
if ($settings['show_modify'] && !empty($message['modified']['name']))
echo '
&#171; <em>', $txt['last_edit'], ': ', $message['modified']['time'], ' ', $txt['by'], ' ', $message['modified']['name'], '</em> &#187;';
Replace With:
โค๊ด: [Select]
if ($settings['show_modify'] && !empty($message['modified']['name']))
{
echo '
&#171; <i>', $txt['last_edit'], ': ', $message['modified']['time'], ' ', $txt['by'], ' ', $message['modified']['name'], '</i> &#187;';

// Allow admin to remove last edit time
if($context['user']['is_admin'])
echo '
<a href="', $scripturl, '?action=removemodified;msg=', $message['id'], ';topic=', $context['current_topic'], '.', $context['start'], ';sesc=', $context['session_id'], '">', $txt['remove_modified'], '</a>';
}

./Themes/default/languages/Modifications.english.php
Find:
โค๊ด: [Select]
?>
Add Before:
โค๊ด: [Select]
$txt['remove_modified'] = 'Remove';

File Operations

Move the included file "2b3/RemoveModified.php" to "./Sources".
« แก้ไขครั้งสุดท้าย: 8 ตุลาคม 2015, 21:21:16 โดย smf »