17 lines
251 B
PHP
17 lines
251 B
PHP
<?php
|
|
/**
|
|
* Handles post saves and updates, triggering proper plugin
|
|
* functions when necessary
|
|
*
|
|
* @package LBRYPress
|
|
*/
|
|
|
|
class LBRY_Post_Handler
|
|
{
|
|
/**
|
|
* [__construct description]
|
|
*/
|
|
public function __construct()
|
|
{
|
|
}
|
|
}
|