php Processwire页面保存挂钩

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Processwire页面保存挂钩相关的知识,希望对你有一定的参考价值。

<?php
/**
 *  Page Save Hook
 * 
 */
public function init() {
  $this->pages->addHookAfter('save', $this, 'exampleMethod');
}
public function exampleMethod($event) {
  $page = $event->arguments[0];
  $this->message("You just saved page: {$page->url}");
}

以上是关于php Processwire页面保存挂钩的主要内容,如果未能解决你的问题,请参考以下文章

php Processwire用户挂钩

php Processwire登录注册挂钩

php Processwire CKE编辑器挂钩

php Processwire更改页面创建日期

php 按时间/日期间隔的最新页面 - Processwire

php 使用jQuery排序的Processwire排序页面