Jump to content
Дизайн и модификация IPS Community IPBSkinsBETA
Search In
  • More options...
Find results that contain...
Find results in...
Sign in to follow this  
Trotor

Добавить блок о редактирование в Links

Recommended Posts

Как можно реализовать что бы в приложение Links, при редактирование записи добавлялся блок кем и когда запись была отредактирована.

 

Нужные поля в таблице базы я создал - edit_name и edit_time, в шаблоны также добавлю информацию, а вот насчёт реализации этого в файлах приложения у меня не хватает знаний :(

Share this post


Link to post

admin/applications_addon/other/links/modules_public/links/links.php

Найти

			/* Update & redirect */

Выше добавить

		$link['edit_name'] = $this->memberData['members_display_name'];
		$link['edit_time'] = time();

  • Upvote 1

Share this post


Link to post

@newbie,

Спасибо большое, то что надо!

Share this post


Link to post

Хотел такое же реализовать и для комментариев Линкс, сделал подобное, но не получается. :(

Share this post


Link to post

admin/applications_addon/other/links/modules_public/links/comments.php

Найти

		/* Update it... */

Ниже добавить

		$update = array();
		$update['edit_name'] = $this->memberData['members_display_name'];
		$update['edit_time'] = time();
		$update['comment_content'] = $commentText;

 

Найти

		$this->DB->update( 'links_comments', array( 'comment_content' => $commentText ), 'comment_id = ' . $comment[ 'comment_id' ] );

Заменить на

		$this->DB->update( 'links_comments', $update, 'comment_id = ' . $comment[ 'comment_id' ] );

  • Upvote 1

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...