1: <?php
2: /*****************************************************************************************
3: * X2Engine Open Source Edition is a customer relationship management program developed by
4: * X2Engine, Inc. Copyright (C) 2011-2016 X2Engine Inc.
5: *
6: * This program is free software; you can redistribute it and/or modify it under
7: * the terms of the GNU Affero General Public License version 3 as published by the
8: * Free Software Foundation with the addition of the following permission added
9: * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10: * IN WHICH THE COPYRIGHT IS OWNED BY X2ENGINE, X2ENGINE DISCLAIMS THE WARRANTY
11: * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12: *
13: * This program is distributed in the hope that it will be useful, but WITHOUT
14: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15: * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
16: * details.
17: *
18: * You should have received a copy of the GNU Affero General Public License along with
19: * this program; if not, see http://www.gnu.org/licenses or write to the Free
20: * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21: * 02110-1301 USA.
22: *
23: * You can contact X2Engine, Inc. P.O. Box 66752, Scotts Valley,
24: * California 95067, USA. or at email address contact@x2engine.com.
25: *
26: * The interactive user interfaces in modified source and object code versions
27: * of this program must display Appropriate Legal Notices, as required under
28: * Section 5 of the GNU Affero General Public License version 3.
29: *
30: * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31: * these Appropriate Legal Notices must retain the display of the "Powered by
32: * X2Engine" logo. If the display of the logo is not reasonably feasible for
33: * technical reasons, the Appropriate Legal Notices must display the words
34: * "Powered by X2Engine".
35: *****************************************************************************************/
36:
37: /**
38: * X2FlowAction that creates a new action
39: *
40: * @package application.components.x2flow.actions
41: */
42: class X2FlowCreateAction extends X2FlowAction {
43: public $title = 'Create Action';
44: public $info = 'Creates a new action for the specified user.';
45:
46: public function paramRules() {
47: $visOptions = array(
48: 1 => Yii::t('actions','Public'),
49: 0 => Yii::t('actions','Private'),
50: );
51: $priorityOptions = array(
52: '1' => Yii::t('actions','Low'),
53: '2' => Yii::t('actions','Medium'),
54: '3' => Yii::t('actions','High')
55: );
56: // $assignmentOptions = array('{assignedTo}'=>'{'.Yii::t('studio','Owner of Record').'}') + X2Model::getAssignmentOptions(false,true); // '{assignedTo}', groups, no 'anyone'
57: $assignmentOptions = array('{assignedTo}' => '{'.Yii::t('studio', 'Owner of Record').'}') + X2Model::getAssignmentOptions(false, true); // '{assignedTo}', groups, no 'anyone'
58:
59: return array_merge (parent::paramRules (), array (
60: 'title' => Yii::t('studio',$this->title),
61: 'options' => array(
62: // array('name'=>'attributes'),
63: array('name'=>'dueDate','label'=>Yii::t('actions','Due Date'),'type'=>'dateTime', 'optional'=>1),
64: array('name'=>'subject','label'=>Yii::t('actions','Subject'),'optional'=>1),
65: array('name'=>'description','label'=>Yii::t('actions','Description'),'type'=>'text'),
66: array('name'=>'assignedTo','label'=>Yii::t('actions','Assigned To'),'type'=>'dropdown','options'=>$assignmentOptions),
67: array('name'=>'priority','label'=>Yii::t('actions','Priority'),'type'=>'dropdown','options'=>$priorityOptions),
68: array('name'=>'visibility','label'=>Yii::t('actions','Visibility'),'type'=>'dropdown','options'=>$visOptions),
69: // array('name'=>'reminder','label'=>Yii::t('actions','Remind Me'),'type'=>'checkbox','default'=>false),
70: )));
71: }
72:
73: public function execute(&$params) {
74: $options = $this->config['options'];
75:
76: $action = new Actions;
77:
78: $action->subject = $this->parseOption('subject',$params);
79: $action->dueDate = $this->parseOption('dueDate',$params);
80: $action->actionDescription = $this->parseOption('description',$params);
81: $action->priority = $this->parseOption('priority',$params);
82: $action->visibility = $this->parseOption('visibility',$params);
83:
84: if(isset($params['model']))
85: $action->assignedTo = $this->parseOption('assignedTo',$params);
86:
87: // if(isset($this->config['attributes']))
88: // $this->setModelAttributes($action,$this->config['attributes'],$params);
89:
90: if ($action->save()) {
91: return array (
92: true,
93: Yii::t('studio', "View created action: ").$action->getLink ());
94: } else {
95: $errors = $action->getErrors ();
96: return array(false, array_shift($errors));
97: }
98:
99:
100:
101: // if($this->parseOption('reminder',$params)) {
102: // $notif=new Notification;
103: // $notif->modelType='Actions';
104: // $notif->createdBy=Yii::app()->user->getName();
105: // $notif->modelId=$model->id;
106: // if($_POST['notificationUsers']=='me'){
107: // $notif->user=Yii::app()->user->getName();
108: // }else{
109: // $notif->user=$model->assignedTo;
110: // }
111: // $notif->createDate=$model->dueDate-($_POST['notificationTime']*60);
112: // $notif->type='action_reminder';
113: // $notif->save();
114: // if($_POST['notificationUsers']=='both' && Yii::app()->user->getName()!=$model->assignedTo){
115: // $notif2=new Notification;
116: // $notif2->modelType='Actions';
117: // $notif2->createdBy=Yii::app()->user->getName();
118: // $notif2->modelId=$model->id;
119: // $notif2->user=Yii::app()->user->getName();
120: // $notif2->createDate=$model->dueDate-($_POST['notificationTime']*60);
121: // $notif2->type='action_reminder';
122: // $notif2->save();
123: // }
124: // }
125: }
126: }
127: