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


PHP Protocol::addMarks方法代码示例

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


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

示例1: topdf

 /**
  * topdf returns the protocol as pdf
  * 
  * @param int $pid entry-id for protocol
  * @return string pdf of the protocol
  */
 private function topdf($pid)
 {
     // pagecaption
     $this->tpl->assign('pagecaption', parent::lang('class.ProtocolView#page#caption#topdf'));
     // get protocol
     $protocol = new Protocol($pid);
     // get status
     $correctable = $protocol->get_correctable(false);
     // check rights
     if (Rights::check_rights($pid, 'protocol', true) && ($correctable['status'] == 2 || $_SESSION['user']->get_userinfo('name') == $protocol->get_owner())) {
         // smarty
         $sP = new JudoIntranetSmarty();
         // prepare marker-array
         $infos = array('version' => date('dmy'));
         // add calendar-fields to array
         $protocol->addMarks($infos, false);
         // add tmce-css
         $fh = fopen('templates/protocols/tmce_' . $protocol->get_preset()->get_path() . '.css', 'r');
         $css = fread($fh, filesize('templates/protocols/tmce_' . $protocol->get_preset()->get_path() . '.css'));
         fclose($fh);
         $infos['tmceStyles'] = $css;
         // smarty
         $sP->assign('p', $infos);
         // check marks in values
         foreach ($infos as $k => $v) {
             if (preg_match('/\\{\\$p\\..*\\}/U', $v)) {
                 $infos[$k] = $sP->fetch('string:' . $v);
             }
         }
         // smarty
         $sP->assign('p', $infos);
         $pdf_out = $sP->fetch('templates/protocols/' . $protocol->get_preset()->get_path() . '.tpl');
         // replace <p></p> to <div></div> for css use with HTML2PDF
         $pdf_out = preg_replace('/<p class="tmceItem">(.*)<\\/p>/U', '<div class="tmceItem">$1</div>', $pdf_out);
         $pdf_out = preg_replace('/<p class="tmceDecision">(.*)<\\/p>/U', '<div class="tmceDecision">$1</div>', $pdf_out);
         // get HTML2PDF-object
         $pdf = new HTML2PDF('P', 'A4', 'de', true, 'UTF-8', array(0, 0, 0, 0));
         // convert
         $pdf->writeHTML($pdf_out, false);
         // output
         $pdf_filename = $this->replace_umlaute(html_entity_decode($sP->fetch('string:' . $protocol->get_preset()->get_filename()), ENT_XHTML, 'ISO-8859-1'));
         $pdf->Output($pdf_filename, 'D');
     } else {
         // error
         $errno = $GLOBALS['Error']->error_raised('NotAuthorized', 'entry:' . $this->get('id'), $this->get('id'));
         $GLOBALS['Error']->handle_error($errno);
         return $GLOBALS['Error']->to_html($errno);
     }
 }
开发者ID:BackupTheBerlios,项目名称:judointranet,代码行数:55,代码来源:class.ProtocolView.php


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