Exemplo n.º 1
0
function createItem($title, $job_number, $client, $media, $description, $ae, $due_date, $budget)
{
    // THE AE is the profile_id_of_contact not a string  TODO: ask Dave
    PodioItem::create(APP_ID, array('fields' => array('job' => $job_number, 'category-status' => 14, 'title-2' => $title, 'client' => $client, 'media-type' => $media, 'some-details' => $description, 'ae-name' => $ae, 'requested-due-date-2' => $due_date, 'requested-budget' => formatDollars($budget))), $options = array());
}