This module keeps history of node status whenever we update or insert any node.
node_status_tracker table contain status information about node.
This module is very useful when we not use workbench or disable node revision.

This module works with new content.

Git clone url : git clone --branch 7.x-1.x https://git.drupal.org/project/node_status_tracker.git
Project url : https://www.drupal.org/project/node_status_tracker

Comments

shravan sonkar created an issue. See original summary.

PA robot’s picture

Status: Active » Needs work

Git clone command for the sandbox is missing in the issue summary, please add it.

We are currently quite busy with all the project applications and we prefer projects with a review bonus. Please help reviewing and put yourself on the high priority list, then we will take a look at your project right away :-)

Also, you should get your friends, colleagues or other community members involved to review this application. Let them go through the review checklist and post a comment that sets this issue to "needs work" (they found some problems with the project) or "reviewed & tested by the community" (they found no major flaws).

I'm a robot and this is an automated message from Project Applications Scraper.

shravan sonkar’s picture

Issue summary: View changes
Status: Needs work » Needs review
shravan sonkar’s picture

Git clone url added.

Cyclonecode’s picture

Manual review:

This module seems to work fine. Pareview does not report any errors.

One thing I noticed was that all history are keept even when a node is deleted is this
really necessary? This will result in that rows in the node_status_tracker table can reference
non existing nodes. A quick fix for this would be to hook into node_delete() and do something like this:

function node_status_tracker_node_delete($node) {
  // Remove references to node being deleted.
  db_delete('node_status_tracker')
    ->condition('nid', $node->nid)
    ->execute();
}
Cyclonecode’s picture

Status: Needs review » Reviewed & tested by the community
shravan sonkar’s picture

Hi @Cyclonecode,

Thanks for your feedback, I have done changes suggested by you.

shravan sonkar’s picture

Hi all,

Any update about publish status ?

th_tushar’s picture

Status: Reviewed & tested by the community » Fixed

Thanks for your contribution, shravan!

I updated your account so you can opt into security advisory coverage now.

Here are some recommended readings to help with excellent maintainership:

You can find lots more contributors chatting on IRC in #drupal-contribute. So, come hang out and stay involved!

Thanks, also, for your patience with the review process. Anyone is welcome to participate in the review process. Please consider reviewing other projects that are pending review. I encourage you to learn more about that process and join the group of reviewers.

Thanks to the dedicated reviewer(s) as well.

th_tushar’s picture

Assigning credits!

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

avpaderno’s picture

Title: Node Status Tracker » [D7] Node Status Tracker
Priority: Major » Normal