Ejemplo n.º 1
0
    </div>-->
    <div class="icon <?php 
echo $type;
?>
">
    <div class="stacked-icon"></div>
    </div>
    <div class="header">
<?php 
if (empty($data->type) || $data->type == 'weblead') {
    echo "<span style='color:grey;cursor:pointer' class='action-frame-link' data-action-id='{$data->id}'>";
    if ($data->complete == 'Yes') {
        echo Yii::t('actions', 'Completed:') . " </span>" . Formatter::formatCompleteDate($data->completeDate);
    } else {
        if (!empty($data->dueDate)) {
            echo Yii::t('actions', 'Due:') . " </span>" . Actions::parseStatus($data->dueDate) . '</b>';
        } elseif (!empty($data->createDate)) {
            echo Yii::t('actions', 'Created:') . " </span>" . Formatter::formatLongDateTime($data->createDate) . '</b>';
        } else {
            echo "&nbsp;";
        }
    }
} elseif ($data->type == 'workflow') {
    // $actionData = explode(':',$data->actionDescription);
    echo Yii::t('workflow', 'Process:') . '<b> ' . $data->workflow->name . '/' . $data->workflowStage->name . '</b> ';
} elseif ($data->type == 'event') {
    echo '<b>' . CHtml::link(Yii::t('calendar', 'Event') . ': ', '#', array('class' => 'action-frame-link', 'data-action-id' => $data->id));
    if ($data->allDay) {
        echo Formatter::formatLongDate($data->dueDate);
        if ($data->completeDate) {
            echo ' - ' . Formatter::formatLongDate($data->completeDate);
Ejemplo n.º 2
0
//echo CHtml::link('[x]',array('deleteNote','id'=>$data->id)); //,array('class'=>'x2-button')
?>
	</div>-->
	<div class="icon <?php 
echo $type;
?>
"></div>
	<div class="header">
		<?php 
if (empty($data->type)) {
    if ($data->complete == 'Yes') {
        echo CHtml::link(Yii::t('actions', 'Action') . ':', array('/actions/default/view', 'id' => $data->id)) . ' ';
        echo Yii::t('actions', 'Completed {date}', array('{date}' => Actions::formatDate($data->completeDate)));
    } else {
        echo '<b>' . CHtml::link(Yii::t('actions', 'Action') . ':', array('/actions/default/view', 'id' => $data->id)) . ' ';
        echo Actions::parseStatus($data->dueDate) . '</b>';
    }
} elseif ($data->type == 'attachment') {
    if ($data->completedBy == 'Email') {
        echo Yii::t('actions', 'Email Message:') . ' ' . Actions::formatDate($data->completeDate);
    } else {
        echo Yii::t('actions', 'Attachment:') . ' ' . Actions::formatDate($data->completeDate);
    }
    //User::getUserLinks($data->completedBy);
    echo ' ';
    //if ($data->complete=='Yes')
    //echo Actions::formatDate($data->completeDate);
    //else
    //echo Actions::parseStatus($data->dueDate);
} elseif ($data->type == 'workflow') {
    // $actionData = explode(':',$data->actionDescription);