当前位置: 首页>>代码示例>>PHP>>正文


PHP Operation::getCategory方法代码示例

本文整理汇总了PHP中Operation::getCategory方法的典型用法代码示例。如果您正苦于以下问题:PHP Operation::getCategory方法的具体用法?PHP Operation::getCategory怎么用?PHP Operation::getCategory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Operation的用法示例。


在下文中一共展示了Operation::getCategory方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _makeMessage

 /**
  * Полное сообщение с описанием операции (для email)
  *
  * @param  Operation $operation
  * @return Swift_Message
  */
 private function _makeMessage(Operation $operation)
 {
     $from = array(sfConfig::get('app_notification_email_from') => sfConfig::get('app_notification_email_name'));
     $to = $operation->getUser()->getUserMail();
     $subject = "Easyfinance.ru - напоминание об операции";
     $body = sprintf($this->_template, $operation->getDateTimeObject('date')->format('d.m.y'), $operation->getCategory()->getName(), $operation->getAccount()->getName(), abs($operation->getAmount()), $operation->getAccount()->getCurrency()->getCode(), $operation->getComment());
     return $this->_mailer->compose($from, $to, $subject, $body);
 }
开发者ID:ru-easyfinance,项目名称:EasyFinance,代码行数:14,代码来源:myNotificationHandlerEmail.php

示例2: setOperation

 public function setOperation(Operation $operation)
 {
     $this->_levelValues["parentCategory"] = $operation->getCategory()->getParentCategory();
     $this->_levelValues["category"] = $operation->getCategory();
     $tags = array_map('trim', explode(',', $operation->getTags()));
     $tag = isset($tags[0]) ? $tags[0] : null;
     $this->_levelValues["tag"] = $tag;
     $this->amount = $operation->getAmountForBudget($this->currency, true);
 }
开发者ID:ru-easyfinance,项目名称:EasyFinance,代码行数:9,代码来源:ReportMatrix.class.php

示例3: _makeMessage

 /**
  * Сообщение вида:
  * ДАТА, СУММА ВАЛЮТА, КАТЕГОРИЯ, СЧЕТ, КОММЕНТАРИЙ
  *
  * @param  Operation $operation
  * @return string
  */
 private function _makeMessage($operation)
 {
     $words = array($operation->getDateTimeObject('date')->format('d.m'), abs($operation->getAmount()) . ' ' . $operation->getAccount()->getCurrency()->getCode(), (string) strip_tags($operation->getCategory()->getName()), (string) strip_tags($operation->getAccount()->getName()), strip_tags($operation->getComment()));
     return $this->_fixMessageLenth($words);
 }
开发者ID:ru-easyfinance,项目名称:EasyFinance,代码行数:12,代码来源:myNotificationHandlerSms.php


注:本文中的Operation::getCategory方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。