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 | |
//Set page title | |
$this->assign('pg_title',lg_portal_checkrequest); | |
include $this->loadTemplate('header.tpl.php'); | |
include $this->loadTemplate('navigation.tpl.php'); | |
?> | |
<h1><?php echo lg_portal_requesthistory ?></h1> |
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
/* add this as a custom where clause in an automation */ | |
xRequest NOT IN (select `xRequest` from HS_Request_ReportingTags) |
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
SET @column_name = 'Custom2'; | |
select @column_name; | |
SET @width_query = CONCAT('SET @max_width = (SELECT CHAR_LENGTH(' , @column_name , ') AS mlen FROM `HS_Request` ORDER BY mlen DESC LIMIT 1)+10;'); | |
PREPARE stmt FROM @width_query; | |
EXECUTE stmt; | |
DEALLOCATE PREPARE stmt; | |
SET @query = CONCAT('ALTER TABLE HS_Request MODIFY ', @column_name, ' VARCHAR(', @max_width, ');'); | |
PREPARE stmt FROM @query; | |
EXECUTE stmt; | |
DEALLOCATE PREPARE stmt; |
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 | |
$var=html_entity_decode("a:25:{s:12:"delivered-to";a:2:{i:0;s:32:"[email protected]";i:1;s:32:"[email protected]";}s:11:"return-path";a:2:{i:0;s:24:"<[email protected]>";i:1;s:24:"<[email protected]>";}s:8:"received";a:4:{i:0;s:208:"from director7.mail.ord1c.rsapps.net ([172.28.128.196]) by store367a.mail.iad3a.rsapps.net (Dovecot) with LMTP id N2bALtrEWlfIbgAASskMtg for <[email protected]>; Fri, 10 Jun 2016 10:45:29 -0400";i:1;s:214:"from smtp44.gate.ord1c ([172.28.255.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) by director7.mail.ord1c.rsapps.net (Dovecot) with LMTP id bjRlPqWWDVcXCQAAqdfm7w ; Fri, 10 Jun 2016 10:45:29 -0400";i:2;s:349:"from [209.85.218.68] ([209.85.218.68:33976] helo=mail-oi0-f68.google.com) by smtp44.gate.ord1c.rsapps.net (envelope-from <[email protected]>) (ecelerity 2.2.3.49 r(42060/42 |
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
select * from HS_Request | |
where xRequest | |
in | |
(select xRequest from | |
`HS_Request` as RH | |
where `iLastReadCount` < (select COUNT(*) from `HS_Request_History` | |
where xRequest = RH.xRequest) | |
) |
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
/* | |
1. Create an automation in Admin > Rules and Triggers > Automations | |
2. Then add a Custom "WHERE" Clause criteria along with other criteria. | |
*/ | |
xRequest in (select xRequest from (select sum(iSeconds) | |
TotalTime, xRequest from HS_Time_Tracker group by xRequest) as | |
TimeList where TotalTime > 3000) | |
/* | |
You will want to replace "3000" in this code with the number of seconds that you want to check for. 35 minutes would be 2100 second I believe. Then add your actions that you want to perform on the request. Your completed automation should look something like this http://drop.userscape.com/Ep5g/1nXCRqpE. | |
Note that you want to make sure that you have a condition in the automation that will prevent it from running more than once. So in my example I'm checking if the request has already been escalated and if it has, the request won't meet the criteria. |
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 | |
// Be sure to send milliseconds | |
$now = time() * 1000; //gives milliseconds | |
$starttime = $now - 604800000; //7 days ago. | |
// endpoint for aviso orientation complete data. Requires a startdate in milliseconds and an end date in milliseconds | |
$aviso_url = 'https://youravisoinstall/aviso/api/2/person/orientationCompleteDate?startDate='.$starttime.'&endDate='.$now;//***Edit This Line | |
//Aviso API key generated in admin | |
$aviso_password = ''; //***Edit This Line | |
// The salt is for one time use, it must be generated for every request |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- dirty trick --> | |
<koken:include file="_includes/sitemappart.html" /> | |
<!-- the included file (in this example sitemappart.html) contains just one line | |
<?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?> | |
--> | |
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
<koken:load source="essays"> | |
<koken:loop> | |
<url> |
NewerOlder