mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-11-04 09:46:23 +01:00 
			
		
		
		
	* Part 1 Removing closing tags when no HTML or other output comes after the last PHP codeblock. * Further removals * nothing --------- Co-authored-by: slawkens <slawkens@gmail.com>
		
			
				
	
	
		
			124 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**#@+
 | 
						|
 * @version 0.0.5
 | 
						|
 * @since 0.0.5
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * @package POT
 | 
						|
 * @version 0.1.0
 | 
						|
 * @author Wrzasq <wrzasq@gmail.com>
 | 
						|
 * @copyright 2007 (C) by Wrzasq
 | 
						|
 * @license http://www.gnu.org/licenses/lgpl-3.0.txt GNU Lesser General Public License, Version 3
 | 
						|
 */
 | 
						|
 | 
						|
/**
 | 
						|
 * SQL identifier representation.
 | 
						|
 * 
 | 
						|
 * @package POT
 | 
						|
 * @version 0.1.0
 | 
						|
 * @property-read string $name Field name.
 | 
						|
 * @property-read string $table Table name.
 | 
						|
 * @tutorial POT/List_objects.pkg#filters.field
 | 
						|
 */
 | 
						|
class OTS_SQLField
 | 
						|
{
 | 
						|
/**
 | 
						|
 * Field name.
 | 
						|
 * 
 | 
						|
 * @var string
 | 
						|
 */
 | 
						|
    private $name;
 | 
						|
/**
 | 
						|
 * Table name.
 | 
						|
 * 
 | 
						|
 * @var string
 | 
						|
 */
 | 
						|
    private $table;
 | 
						|
 | 
						|
/**
 | 
						|
 * Creates new field representation.
 | 
						|
 * 
 | 
						|
 * @param string $name Field name.
 | 
						|
 * @param string $table Table name.
 | 
						|
 */
 | 
						|
    public function __construct($name, $table = '')
 | 
						|
    {
 | 
						|
        $this->name = $name;
 | 
						|
        $this->table = $table;
 | 
						|
    }
 | 
						|
 | 
						|
/**
 | 
						|
 * Returns field name.
 | 
						|
 * 
 | 
						|
 * @return string Field name.
 | 
						|
 */
 | 
						|
    public function getName()
 | 
						|
    {
 | 
						|
        return $this->name;
 | 
						|
    }
 | 
						|
 | 
						|
/**
 | 
						|
 * Returns table name.
 | 
						|
 * 
 | 
						|
 * @return string Table name.
 | 
						|
 */
 | 
						|
    public function getTable()
 | 
						|
    {
 | 
						|
        return $this->table;
 | 
						|
    }
 | 
						|
 | 
						|
/**
 | 
						|
 * Magic PHP5 method.
 | 
						|
 * 
 | 
						|
 * @version 0.1.0
 | 
						|
 * @since 0.1.0
 | 
						|
 * @param string $name Property name.
 | 
						|
 * @return mixed Property value.
 | 
						|
 * @throws OutOfBoundsException For non-supported properties.
 | 
						|
 */
 | 
						|
    public function __get($name)
 | 
						|
    {
 | 
						|
        switch($name)
 | 
						|
        {
 | 
						|
            case 'name':
 | 
						|
            case 'table':
 | 
						|
                return $this->$name;
 | 
						|
 | 
						|
            default:
 | 
						|
                throw new OutOfBoundsException();
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
/**
 | 
						|
 * Returns string representation for WHERE clause.
 | 
						|
 * 
 | 
						|
 * <p>
 | 
						|
 * Returned string can be easily inserted into SQL query.
 | 
						|
 * </p>
 | 
						|
 * 
 | 
						|
 * @version 0.1.0
 | 
						|
 * @since 0.1.0
 | 
						|
 * @return string String WHERE clause.
 | 
						|
 */
 | 
						|
    public function __toString()
 | 
						|
    {
 | 
						|
        // database handle
 | 
						|
        $db = POT::getInstance()->getDBHandle();
 | 
						|
 | 
						|
        // basic name
 | 
						|
        $name = $db->fieldName($this->name);
 | 
						|
 | 
						|
        // prepends table name
 | 
						|
        if( !empty($this->table) )
 | 
						|
        {
 | 
						|
            $name = $db->tableName($this->table) . '.' . $name;
 | 
						|
        }
 | 
						|
 | 
						|
        return $name;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
/**#@-*/
 |