4
0
mirror of https://github.com/cwinfo/envayasms.git synced 2025-06-26 02:39:23 +00:00

remove test action to simplify server implementation; add icons from http://www.androidicons.com/freebies.php

This commit is contained in:
Jesse Young
2011-09-12 18:16:44 -07:00
parent 0a0f50ad18
commit da334a04c9
15 changed files with 9 additions and 15 deletions

View File

@ -11,7 +11,6 @@ class KalSMS
const ACTION_INCOMING = 'incoming';
const ACTION_OUTGOING = 'outgoing';
const ACTION_SEND_STATUS = 'send_status';
const ACTION_TEST = 'test';
const STATUS_QUEUED = 'queued';
const STATUS_FAILED = 'failed';
@ -50,8 +49,6 @@ class KalSMS
return new KalSMS_Action_Outgoing($this);
case static::ACTION_SEND_STATUS:
return new KalSMS_Action_SendStatus($this);
case static::ACTION_TEST:
return new KalSMS_Action_Test($this);
default:
return new KalSMS_Action($this);
}