From 39af49adc14a69cfbb8ae71e9037fb445f153580 Mon Sep 17 00:00:00 2001 From: Lisa Marie Maginnis Date: Thu, 1 May 2014 17:04:18 -0400 Subject: [PATCH] Our changes --- CRM/ACL/BAO/Cache.php | 10 +++-- CRM/Contact/Task.php | 8 +++- CRM/Contribute/Task.php | 7 +++- CRM/Core/Resources.php | 6 ++- CRM/Import/Parser.php | 2 +- CRM/Utils/PDF/Utils.php | 88 +++++++++++++++++++++++++++++++++++++++++ CRM/Utils/Token.php | 4 +- api/v3/Contact.php | 9 +++++ api/v3/Contribution.php | 9 +++++ 9 files changed, 134 insertions(+), 9 deletions(-) diff --git a/CRM/ACL/BAO/Cache.php b/CRM/ACL/BAO/Cache.php index b665d2013d..97eb69d2e5 100644 --- a/CRM/ACL/BAO/Cache.php +++ b/CRM/ACL/BAO/Cache.php @@ -79,9 +79,13 @@ SELECT acl_id "; $params = array(1 => array($id, 'Integer')); - if ($id == 0) { - $query .= " OR contact_id IS NULL"; - } +## this is related to RT#765026 +# Something is occasionally inserting records in civicrm_acl_cache with id null. That causes i +# for our anonymous visitors who want to sign petitions. +# Removed. Ward, 2012-07-20 +# if ($id == 0) { +# $query .= " OR contact_id IS NULL"; +# } $dao = CRM_Core_DAO::executeQuery($query, $params); diff --git a/CRM/Contact/Task.php b/CRM/Contact/Task.php index 764ef97ba8..57ff3cb679 100644 --- a/CRM/Contact/Task.php +++ b/CRM/Contact/Task.php @@ -64,7 +64,8 @@ class CRM_Contact_Task { EMAIL_UNHOLD = 22, RESTORE = 23, DELETE_PERMANENTLY = 24, - COMMUNICATION_PREFS = 25; + COMMUNICATION_PREFS = 25, + LATEX_LETTER = 26; /** * The task array @@ -167,6 +168,11 @@ class CRM_Contact_Task { 'title' => ts('Alter Contact Communication Preferences'), 'class' => 'CRM_Contact_Form_Task_AlterPreferences', ), + self::LATEX_LETTER => array( + 'title' => ts('Print Latex PDF Letter for Contacts'), + 'class' => 'CRM_Contact_Form_Task_LatexPDF', + 'result' => TRUE, + ), self::RESTORE => array( 'title' => ts('Restore Contacts'), 'class' => 'CRM_Contact_Form_Task_Delete', diff --git a/CRM/Contribute/Task.php b/CRM/Contribute/Task.php index d4d095a46d..e3361cf086 100644 --- a/CRM/Contribute/Task.php +++ b/CRM/Contribute/Task.php @@ -39,7 +39,7 @@ * */ class CRM_Contribute_Task { - const DELETE_CONTRIBUTIONS = 1, PRINT_CONTRIBUTIONS = 2, EXPORT_CONTRIBUTIONS = 3, BATCH_CONTRIBUTIONS = 4, EMAIL_CONTACTS = 5, UPDATE_STATUS = 6, PDF_RECEIPT = 7; + CONST DELETE_CONTRIBUTIONS = 1, PRINT_CONTRIBUTIONS = 2, EXPORT_CONTRIBUTIONS = 3, BATCH_CONTRIBUTIONS = 4, EMAIL_CONTACTS = 5, UPDATE_STATUS = 6, PDF_RECEIPT = 7, LATEX_TEST = 10; /** * The task array @@ -116,6 +116,11 @@ class CRM_Contribute_Task { 'class' => 'CRM_Contribute_Form_Task_Invoice', 'result' => FALSE, ), + 10 => array( + 'title' => ts('Latex Letters for Contributions'), + 'class' => 'CRM_Contribute_Form_Task_PDFLatex', + 'result' => FALSE, + ), ); //CRM-4418, check for delete diff --git a/CRM/Core/Resources.php b/CRM/Core/Resources.php index e1663fc7bf..c18c8d5679 100644 --- a/CRM/Core/Resources.php +++ b/CRM/Core/Resources.php @@ -342,7 +342,7 @@ class CRM_Core_Resources { * @return string */ public function renderSetting() { - // On a standard page request we construct the CRM object from scratch + /*// On a standard page request we construct the CRM object from scratch if (!self::isAjaxMode()) { $js = 'var CRM = ' . json_encode($this->getSettings()) . ';'; } @@ -351,6 +351,10 @@ class CRM_Core_Resources { $js = 'CRM.$.extend(true, CRM, ' . json_encode($this->getSettings()) . ');'; } return sprintf("\n", $js); + */ + $js = 'var CRM = ' . json_encode($this->getSettings()) . ';'; + //return sprintf("\n", $js); + return sprintf("\n", $js); } /** diff --git a/CRM/Import/Parser.php b/CRM/Import/Parser.php index e55ead633b..a17561478f 100644 --- a/CRM/Import/Parser.php +++ b/CRM/Import/Parser.php @@ -36,7 +36,7 @@ abstract class CRM_Import_Parser { /** * Settings */ - const MAX_ERRORS = 250, MAX_WARNINGS = 25, DEFAULT_TIMEOUT = 30; + CONST MAX_ERRORS = 10000, MAX_WARNINGS = 25, DEFAULT_TIMEOUT = 30; /** * Return codes diff --git a/CRM/Utils/PDF/Utils.php b/CRM/Utils/PDF/Utils.php index f2c9bd8558..3882c7b606 100644 --- a/CRM/Utils/PDF/Utils.php +++ b/CRM/Utils/PDF/Utils.php @@ -36,8 +36,96 @@ define('DOMPDF_ENABLE_AUTOLOAD', FALSE); * $Id$ * */ + class CRM_Utils_PDF_Utils { + public static function latex2pdf(&$text, $fileName = 'civicrm.pdf', $output = FALSE, $pdfFormat = NULL) { + /* FIXME: get $paper_size, $orientation, $margins */ + + if (is_array($text)) { + $pages = &$text; + } + else { + $pages = array($text); + } + + + $head='\documentclass[11pt]{letter} +\usepackage{url} +\usepackage{ucs} +\usepackage{graphicx} +\usepackage[T1]{fontenc} +\usepackage{fullpage} + +\newcommand{\fsfclosing}[1]{\par\nobreak\vspace{\parskip} + \stopbreaks + \noindent + \ifx\@empty\fromaddress\else + \hspace*{\longindentation}\fi + \parbox{\indentedwidth}{\raggedright + \ignorespaces #1\\\\[1\medskipamount] + \hspace*{-0.25in}\includegraphics[scale=1.0]{sigjohns.pdf} + \\\\ + + \ifx\@empty\fromsig + \fromname + \else \fromsig \fi\strut} + \par} +\medskipamount=\parskip + +%% This line might be necessary, but it was not able to find utf8.def on my +%% machine. +\usepackage[utf8x]{inputenc} +\pagestyle{empty} +\tolerance=8000 +\address{\vspace{0.05in}} +\signature{John Sullivan \\\\ Executive Director} +\usepackage[ +top = 0.4in, +bottom = 0.9in, +left = 0.8in, +right = 0.8in]{geometry} +\begin{document} +'; + $footer=' +\end{document}'; + + $latex = $head; + foreach ($pages as $page) { + $latex.=$page; + } + $latex.=$footer; + + $descriptorspec = array( + 0 => array("pipe", "r"), + 1 => array("pipe", "w") + ); + + + + $process = proc_open("/usr/local/bin/pdflatex_wrapper.sh", $descriptorspec, $pipes); + + + if (is_resource($process)) { + fwrite($pipes[0], $latex); + fclose($pipes[0]); + + $pdf = stream_get_contents($pipes[1]); + fclose($pipes[1]); + } else { + CRM_Core_Error::debug_log_message("ERROR creating PDF. Check /tmp/pdflatex_*"); + } + + if ($output) { + return $pdf; + } + else { + header('Content-Type: application/pdf'); + header('Content-Disposition: attachment; filename="' . $fileName . '"'); + echo $pdf; + } + } + /** * @param $text * @param string $fileName diff --git a/CRM/Utils/Token.php b/CRM/Utils/Token.php index b549e4aa9f..fb5d96f9b4 100644 --- a/CRM/Utils/Token.php +++ b/CRM/Utils/Token.php @@ -685,7 +685,7 @@ class CRM_Utils_Token { $str ); - $str = preg_replace('/\\\\|\{(\s*)?\}/', ' ', $str); + //$str = preg_replace('/\\\\|\{(\s*)?\}/', ' ', $str); //WHY you do this? return $str; } @@ -874,7 +874,7 @@ class CRM_Utils_Token { * this function works directly on the string that is passed */ public static function unescapeTokens(&$str) { - $str = preg_replace('/\\\\|\{(\{\w+\.\w+\})\}/', '\\1', $str); + //$str = preg_replace('/\\\\|\{(\{\w+\.\w+\})\}/', '\\1', $str); } /** diff --git a/api/v3/Contact.php b/api/v3/Contact.php index eb6b5d7358..a7a6f9039d 100644 --- a/api/v3/Contact.php +++ b/api/v3/Contact.php @@ -134,6 +134,15 @@ function _civicrm_api3_contact_create_spec(&$params) { $params['gender_id']['api.aliases'] = array('gender'); } +/** + * Added by Ward; basic filter-able contribution list + * use filter.receive_date_high etc + * 2013-07-02 + */ +function civicrm_api3_contact_list($params) { + return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); +} + /** * Retrieve one or more contacts, given a set of search params. * diff --git a/api/v3/Contribution.php b/api/v3/Contribution.php index 8d1df05359..9283eebbdb 100644 --- a/api/v3/Contribution.php +++ b/api/v3/Contribution.php @@ -202,6 +202,15 @@ function _civicrm_api3_contribution_delete_spec(&$params) { $params['id']['api.aliases'] = array('contribution_id'); } +/** + * Added by Ward; basic filter-able contribution list + * use filter.receive_date_high etc + * 2013-07-02 + */ +function civicrm_api3_contribution_list($params) { + return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params); +} + /** * Retrieve a set of contributions. * -- 2.25.1