PATH:
home
/
centosnipponia
/
public_html
/
nipponianl
/
wp-content
/
plugins
/
pixelyoursite
/
includes
/
events
<?php namespace PixelYourSite; class EventTypes { static public $DYNAMIC = "dyn"; static public $STATIC = "static"; static public $TRIGGER = "trigger"; } abstract class PYSEvent { protected $id; protected $type; protected $category; public $args = null; /** * GroupedEvent constructor. * @param String $id // unique id use in js object like key * @param String $type // can be static(fire when open page) or dynamic (fire when some event did) * @param String $category // event category like woo, edd signal etc */ public function __construct($id,$type,$category=''){ $this->id = $id; $this->type = $type; $this->category = $category; } function getId() { return $this->id; } function getType() { return $this->type; } function getCategory() { return $this->category; } }
[+]
..
[-] class-event-grouped.php
[edit]
[-] class-event.php
[edit]
[-] class-events-automatic.php
[edit]
[-] class-events-custom.php
[edit]
[-] class-events-edd.php
[edit]
[-] class-events-fdp.php
[edit]
[-] class-event-single.php
[edit]
[-] class-events-woo.php
[edit]
[-] interface-events.php
[edit]
[-] .htaccess.disabled
[edit]