GhostManSec
Server: LiteSpeed
System: Linux premium117.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: eblama1 (1214)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/eblama1/sms.karnplayinland.com/ProgramFunctions/MailingLabel.fnc.php
<?php
/**
 * Mailing Label functions
 *
 * @package RosarioSIS
 * @subpackage ProgramFunctions
 */

/**
 * Mailing Label
 *
 * @global $THIS_RET DBGet() Current row: $THIS_RET['STUDENT_ID'].
 * @static $mailing_labels Mailing Labels cache.
 *
 * @since 9.0 Add Student name if no Contacts at address
 *
 * @param string $address_id Address ID.
 *
 * @return string Formatted mailing address.
 */
function MailingLabel( $address_id )
{
	global $THIS_RET;

	static $mailing_labels = [];

	if ( ! $address_id )
	{
		return '';
	}

	$student_id = $THIS_RET['STUDENT_ID'];

	if ( ! isset( $mailing_labels[ $address_id ][ $student_id ] ) )
	{
		$people_RET = DBGet( "SELECT p.FIRST_NAME,p.MIDDLE_NAME,p.LAST_NAME,
		coalesce(a.MAIL_ADDRESS,a.ADDRESS) AS ADDRESS,coalesce(a.MAIL_CITY,a.CITY) AS CITY,
		coalesce(a.MAIL_STATE,a.STATE) AS STATE,coalesce(a.MAIL_ZIPCODE,a.ZIPCODE) AS ZIPCODE
		FROM address a JOIN students_join_address sja ON (a.ADDRESS_ID=sja.ADDRESS_ID)
		LEFT OUTER JOIN students_join_people sjp ON (sjp.ADDRESS_ID=sja.ADDRESS_ID
			AND sjp.STUDENT_ID=sja.STUDENT_ID
			AND (sjp.CUSTODY='Y' OR sja.RESIDENCE IS NULL))
		LEFT OUTER JOIN people p ON (p.PERSON_ID=sjp.PERSON_ID)
		WHERE sja.STUDENT_ID='" . (int) $student_id . "'
		AND sja.ADDRESS_ID='" . (int) $address_id . "'
		ORDER BY sjp.STUDENT_RELATION", [], [ 'LAST_NAME' ] );

		$return = '';

		// People names.
		foreach ( (array) $people_RET as $people )
		{
			$people_total = count( $people );

			for ( $i = 1; $i < $people_total; $i++ )
			{
				$return .= $people[ $i ]['FIRST_NAME'] . ' &amp; ';
			}

			if ( $i === 1
				&& empty( $people[ $i ]['FIRST_NAME'] ) )
			{
				// Add Student name if no Contacts at address.
				$return .= $THIS_RET['FULL_NAME'] . '<br>';
			}
			else
			{
				$return .= DisplayName(
					$people[ $i ]['FIRST_NAME'],
					$people[ $i ]['LAST_NAME'],
					$people[ $i ]['MIDDLE_NAME']
				) . '<br>';
			}
		}

		// Mab - this is a bit of a kludge but insert an html comment so people and address can be split later.
		$return .= '<!-- -->' . $people[ $i ]['ADDRESS'] . '<br>' .
			$people[ $i ]['CITY'] . ( $people[ $i ]['STATE'] ? ', ' . $people[ $i ]['STATE'] : '' ) .
			( $people[ $i ]['ZIPCODE'] ? ' ' . $people[ $i ]['ZIPCODE'] : '' );

		$mailing_labels[ $address_id ][ $student_id ] = $return;
	}

	return $mailing_labels[ $address_id ][ $student_id ];
}

/**
 * Positioned Mailing Label
 * Envelopes may have their window on the right (French speaking coutries)
 * In case a PDF Header is defined, no top margin is added
 *
 * @since 11.6
 *
 * @uses .mailing-label-left, .mailing-label-right & .mailing-label-top-margin CSS classes
 *
 * @param string $mailing_label Mailing Label address.
 * @param string $position      'left' or 'right'. If empty, we get user preference.
 *
 * @return string Positioned Mailing Label HTML
 */
function MailingLabelPositioned( $mailing_label, $position = '' )
{
	global $wkhtmltopdfPath,
		$RosarioPlugins;

	if ( ! $position )
	{
		$position = Preferences( 'MAILING_LABEL_POSITION' );
	}

	if ( ! in_array( (string) $position, [ 'left', 'right' ] ) )
	{
		$position = 'left';
	}

	$classes = '';

	if ( empty( $wkhtmltopdfPath )
		|| empty( $RosarioPlugins['PDF_Header_Footer'] )
		|| ! empty( $_REQUEST['pdf_header_footer_hide'] )
		|| ! ProgramConfig( 'pdf_header_footer', 'PDF_HEADER_FOOTER_MARGIN_TOP' ) )
	{
		// No PDF header, add the equivalent of 6 line breaks.
		$classes .= ' mailing-label-top-margin';
	}

	if ( $position === 'left' )
	{
		return '<table class="mailing-label-left' . $classes . '"><tr><td>&nbsp;</td><td>' .
			$mailing_label . '</td></tr></table>';
	}

	// Position: right.
	return '<table class="mailing-label-right' . $classes . '"><tr><td>' .
		$mailing_label .
		'</td><td>&nbsp;</td></tr></table>';
}