Guest User

Untitled

a guest
Oct 20th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. // Remember create column hits with type int
  3. // Create plugin with any name and check in events OnWebPageInit
  4. $e = &$modx->Event;
  5.  
  6. if($e->name == 'OnWebPageInit') {
  7. if(!isset($_SESSION['usertype'])) {
  8. $_SESSION['usertype'] = '';
  9. }
  10. if($_SESSION['usertype'] != 'manager') {
  11. $modx->db->query("UPDATE " . $modx->getFullTableName('site_content') . " SET hits=IFNULL(hits, 0)+1 WHERE id=" . $modx->documentIdentifier);
  12. }
  13. }
Add Comment
Please, Sign In to add comment