Skip to content

whobutsb/Highrise-PHP-Api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Fork notes

I forked the project to improve the basic version of the API client code which I found very ugly. I do not know if there was a good reason that certain things were done as they were made.
An amount of improvment can be done, but the current version is sufficient for my usage.
By the way, the basic behavior of use was kept. (If I wanted to remake an entiere Highrise API client, I would have used Guzzle to do it properly and easily)

So, what's new ?

  • PHP 5.3 namespaces
  • Composer support
  • Ability to list global subject fields
  • Ability to add custom fields to a Person
  • Ability of deleting a email address of a Person
  • Some refactoring

If you want to use the composer autoloader in your project, here is the way to do it:

In the HighriseAPI repository, run:

    curl -s https://getcomposer.org/installer | php
    php composer.phar install

Then just put the following code on your project:

    require_once('vendor/autoload.php');

Introduction

Highrise-PHP-Api is a project (currently in alpha) to provide easy access to 37signals' Highrise API to PHP Developers.

Documentation is coming soon, please check the test directory for examples.

This PHP Class currently allows CRUD support for People objects only. Support for other object types will be uploaded shortly.

Please mind the tests are only supposed to run in a blank Highrise account and not on a live one.

Features currently implemented:

  • People
  • Tasks
  • Notes
  • Emails
  • Tags
  • Users

Examples

Create a new person and set his address


    $person = new HighrisePerson($highrise);
    $person->setFirstName("John");
    $person->setLastName("Doe");
    $person->addEmailAddress("johndoe@gmail.com");

    $address = new HighriseAddress();
    $address->setAddress("165 Test St.");
    $address->setCity("Glasgow");
    $address->setCountry("Scotland");
    $address->setZip("GL1");
    $person->addAddress($address);

    $person->save();

Find People by Search Term


    $people = $highrise->findPeopleBySearchTerm("John");
    foreach($people as $p)
            print $person->getFirstName() . "\n";

Print all notes


  foreach($highrise->findAllPeople() as $person)
    {
            print_r($person->getNotes());
    }

Create a new note


    $note = new HighriseNote($highrise);
    $note->setSubjectType("Party");
$note->setSubjectId($person->getId());
    $note->setBody("Test");
$note->save();

Add tags


    $people = $highrise->findPeopleByTitle("CEO");
    foreach($people as $person)
    {
            $person->addTag("CEO");
		$person->save();
    }

Remove Tags


    $people = $highrise->findPeopleByTitle("Ex-CEO");
    foreach($people as $person)
    {
            unset($person->tags['CEO']);
            $person->save();
    }

Find all Tags


    $all_tags = $highrise->findAllTags();
print_r($all_tags);

Create Task


    $task = new HighriseTask($highrise);
    $task->setBody("Task Body");
$task->setPublic(false);
    $task->setFrame("Tomorrow");
    $task->save();

Assign all upcoming tasks


    $users = $highrise->findAllUsers();
$user = $users[0]; // just select the first user

foreach($highrise->findUpcomingTasks() as $task)
{
	$task->assignToUser($user);
		$task->save();
		}

Find all assigned tasks


 $assigned_tasks = $highrise->findAssignedTasks();
 print_r($assigned_tasks);

Find all users


 $users = $highrise->findAllUsers();
 print_r($users);

Find current user


 $me = $highrise->findMe();

About

A full featured PHP API Client for 37signals' Highrise

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%