This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script> | |
</head> | |
<div id="box_form"> | |
<form id="zFormer" method="POST" action="former.php" name="former"> | |
<p> | |
<label for="z_name">Your Name:</label> | |
<input type="text" value="Adam Panzer" name="z_name"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define("ZDAPIKEY", "YOURAPIKEY"); | |
define("ZDUSER", "YOURUSERNAME"); | |
define("ZDURL", "https://SUBDOMAIN.zendesk.com/api/v2"); | |
function curlWrap($url, $json) | |
{ | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true ); | |
curl_setopt($ch, CURLOPT_MAXREDIRS, 10 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
foreach($_POST as $key => $value){ | |
if(preg_match('/^z_/i',$key)){ | |
$arr[strip_tags($key)] = strip_tags($value); | |
} | |
} | |
$create = json_encode(array('ticket' => array('subject' => $arr['z_subject'], 'comment' => array( "value"=> $arr['z_description']), 'requester' => array('name' => $arr['z_name'], 'email' => $arr['z_requester'])))); | |
$return = curlWrap("/tickets.json", $create); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<div id="box_form"> | |
<form id="zFormer" method="POST" action="former.php" name="former"> | |
<p> | |
Your Name:<input type="text" value="Adam Panzer" name="z_name"> | |
</p> | |
<p> | |
Your Email Address: <input type="text" value="[email protected]" name="z_requester"> | |
</p> | |
<p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#box_form').dialog({ | |
autoOpen: false, | |
height: 375, | |
width: 350, | |
modal: true, | |
buttons: [ | |
{ | |
text: "Cancel", | |
click: function() { | |
$(this).dialog("close"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define("ZDAPIKEY", ""); | |
define("ZDUSER", ""); | |
define("ZDURL", "https://subdomain.zendesk.com/api/v2"); | |
/* Note: do not put a trailing slash at the end of v2 */ | |
function curlWrap($url, $json, $action) | |
{ | |
$ch = curl_init(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Get Incident Data | |
$id = $_GET[id]; | |
$data = curlWrap("/tickets/".$id.".json", null, "GET"); | |
//Find problem ticket and count incidents | |
$source = $data->ticket->problem_id; | |
$num = curlWrap("/tickets/".$source."/incidents.json", null, "GET"); | |
$num = count($num->tickets); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$j(document).ready(function(){ | |
$j('.linked > td.<custom field id>').each(function(){ | |
if($j(this).text() == "high"){ | |
$j(this).parent().css('background-color', '#E89090'); | |
$j(this).html('<img src="https://github.com/apanzerj/images/raw/master/flag_mark_red.png" width="10" height="10">'); | |
} | |
if($j(this).text() == "medium"){ | |
$j(this).parent().css('background-color', '#E8E890'); | |
$j(this).html('<img src="https://github.com/apanzerj/images/raw/master/flag_mark_yellow.png" width="10" height="10">'); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$j(document).ready(function() { | |
$j('#tray').css('display', 'none').css('position', 'relative'); | |
$j('#showMe').click(function() { | |
$j('#tray').slideToggle(); | |
$j('#show').toggle(); | |
$j('#hide').toggle(); | |
}).css('cursor', 'pointer'); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#tray{ | |
display: none; | |
position: relative; | |
} | |
.idThief_base{ | |
} | |
.idThief_primary{ | |
font-color: black; | |
} | |
.border_style{ |
OlderNewer