lithium\data\model\Query::paths()

public method

Return the generated aliases mapped to their relation path

Parameters

  • \lithium\data\Source $source

    Instance of the data source to use for conversion.

Returns

array

Map between aliases and their corresponding dotted relation paths.

Source

	public function paths(Source $source = null) {
		if ($source) {
			$this->applyStrategy($source);
		}
		return $this->_paths;
	}