PHP code example of bramdeleeuw / silverstripe-event-tickets

1. Go to this page and download the library: Download bramdeleeuw/silverstripe-event-tickets library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

bramdeleeuw / silverstripe-event-tickets example snippets


public function getEventTitle()
{
    return $this->owner->Title;
}

public function getEventStartDate()
{
    return $this->owner->dbObject('StartDate');
}

public function getEventAddress()
{
    $this->owner->getFullAddress();
}