INFRA-132 - CRM/Badge - phpcbf
authorTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 21:09:19 +0000 (13:09 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 23:04:25 +0000 (15:04 -0800)
CRM/Badge/BAO/Badge.php
CRM/Badge/BAO/Layout.php
CRM/Badge/Form/Layout.php
CRM/Badge/Page/AJAX.php

index 74931c93233fbcaecfabc9304b29582a9715cd12..f1a0391c0490281970140045fa105cd9a015d0d9 100644 (file)
@@ -89,7 +89,6 @@ class CRM_Badge_BAO_Badge {
     $formattedRow['labelTitle'] = $layout['title'];
     $formattedRow['labelId'] = $layout['id'];
 
-
     if (!empty($layout['data']['rowElements'])) {
       foreach ($layout['data']['rowElements'] as $key => $element) {
         $value = '';
@@ -166,6 +165,7 @@ class CRM_Badge_BAO_Badge {
       case 'Hanging Badge 3-3/4" x 4-3"/4':
         self::labelCreator($formattedRow, 5);
         break;
+
       case 'Avery 5395':
       default:
         self::labelCreator($formattedRow);
@@ -212,9 +212,11 @@ class CRM_Badge_BAO_Badge {
         case 'R':
           $imageAlign = 68;
           break;
+
         case 'L':
           $imageAlign = 0;
           break;
+
         default:
           break;
       }
@@ -289,9 +291,11 @@ class CRM_Badge_BAO_Badge {
           case 'L':
             $xAlign += -14;
             break;
+
           case 'R':
             $xAlign += 27;
             break;
+
           case 'C':
             $xAlign += 9;
             break;
@@ -325,24 +329,26 @@ class CRM_Badge_BAO_Badge {
           case 'L':
             $xAlign += -5;
             break;
+
           case 'R':
             $xAlign += 56;
             break;
+
           case 'C':
             $xAlign += 29;
             break;
         }
 
         $style = array(
-          'border' => false,
+          'border' => FALSE,
           'hpadding' => 13.5,
           'vpadding' => 'auto',
-          'fgcolor' => array(0,0,0),
-          'bgcolor' => false,
+          'fgcolor' => array(0, 0, 0),
+          'bgcolor' => FALSE,
           'position' => '',
         );
 
-        $this->pdf->write2DBarcode($data['current_value'], 'QRCODE,H', $xAlign, $y  + $this->pdf->height - 26, 30,
+        $this->pdf->write2DBarcode($data['current_value'], 'QRCODE,H', $xAlign, $y + $this->pdf->height - 26, 30,
           30, $style, 'B');
       }
     }
index a5813ff910249ea4df6d68d2f9f4eda552014043..2f9a8372a14eab2f456da2a10465a51b033c562d 100644 (file)
@@ -166,7 +166,7 @@ class CRM_Badge_BAO_Layout extends CRM_Core_DAO_PrintLabel {
     CRM_Badge_BAO_Layout::retrieve($layoutParams, $layoutInfo);
 
     $formatProperties = CRM_Core_OptionGroup::getValue('name_badge', $layoutInfo['label_format_name'], 'name');
-    $layoutInfo['format'] = json_decode($formatProperties, true);
+    $layoutInfo['format'] = json_decode($formatProperties, TRUE);
     $layoutInfo['data'] = CRM_Badge_BAO_Layout::getDecodedData($layoutInfo['data']);
     return $layoutInfo;
   }
@@ -181,6 +181,6 @@ class CRM_Badge_BAO_Layout extends CRM_Core_DAO_PrintLabel {
    * @static
    */
   static public function getDecodedData($jsonData) {
-    return json_decode($jsonData, true);
+    return json_decode($jsonData, TRUE);
   }
 }
index 70528b664c96bf12a5c099cadb3e44b8b51587c1..7294a5ac5a6f2bcf267cb3c9cfe3150ef9d452b1 100644 (file)
@@ -61,7 +61,7 @@ class CRM_Badge_Form_Layout extends CRM_Admin_Form {
 
     $this->applyFilter('__ALL__', 'trim');
 
-    $this->add('text', 'title', ts('Title'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title'), true);
+    $this->add('text', 'title', ts('Title'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title'), TRUE);
 
     $labelStyle = CRM_Core_BAO_LabelFormat::getList(TRUE, 'name_badge');
     $this->add('select', 'label_format_name', ts('Label Format'), array('' => ts('- select -')) + $labelStyle, TRUE);
@@ -92,7 +92,7 @@ class CRM_Badge_Form_Layout extends CRM_Admin_Form {
     unset($imageAlignment['C']);
 
     $rowCount = self::FIELD_ROWCOUNT;
-    for ( $i =1; $i <= $rowCount; $i++ ) {
+    for ( $i = 1; $i <= $rowCount; $i++ ) {
       $this->add('select', "token[$i]", ts('Token'), array('' => ts('- skip -')) + $tokens);
       $this->add('select', "font_name[$i]", ts('Font Name'), $fontNames);
       $this->add('select', "font_size[$i]", ts('Font Size'), $fontSizes);
@@ -107,8 +107,7 @@ class CRM_Badge_Form_Layout extends CRM_Admin_Form {
     $this->add('select', "barcode_type", ts('Type'), $barcodeTypes);
     $this->add('select', "barcode_alignment", ts('Alignment'), $textAlignment);
 
-
-    $attributes = array('readonly'=> true);
+    $attributes = array('readonly' => TRUE);
     $this->add('text', 'image_1', ts('Image (top left)'),
       $attributes + CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title'));
     $this->add('text', 'width_image_1', ts('Width (mm)'), array('size' => 6));
@@ -119,7 +118,6 @@ class CRM_Badge_Form_Layout extends CRM_Admin_Form {
     $this->add('text', 'width_image_2', ts('Width (mm)'), array('size' => 6));
     $this->add('text', 'height_image_2', ts('Height (mm)'), array('size' => 6));
 
-
     $this->add('checkbox', 'show_participant_image', ts('Use Participant Image?'));
     $this->add('text', 'width_participant_image', ts('Width (mm)'), array('size' => 6));
     $this->add('text', 'height_participant_image', ts('Height (mm)'), array('size' => 6));
index 030caa76a00f108addeae647a16617f667771fd3..5019e9a1909d1e7f825c41d907404a471cf58063 100644 (file)
@@ -35,7 +35,7 @@
 class CRM_Badge_Page_AJAX {
   public static function getImageProp() {
     $img = $_GET['img'];
-   list($w, $h) = CRM_Badge_BAO_Badge::getImageProperties($img);
+    list($w, $h) = CRM_Badge_BAO_Badge::getImageProperties($img);
     CRM_Utils_JSON::output(array('width' => $w, 'height' => $h));
   }
 }