Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement css() at phpQuery #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 55 additions & 6 deletions phpQuery/phpQuery/phpQueryObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -1385,24 +1385,73 @@ public function __loadSuccess($html) {
* @return phpQuery|QueryTemplatesSource|QueryTemplatesParse|QueryTemplatesSourceQuery
* @todo
*/
public function css() {
public function css($propertyName = null, $value = null) {
// TODO
return $this;
foreach($this->stack(1) as $node) {
if (is_array($propertyName) || ! is_null($value)) {
if ( is_array($propertyName) ) {
$map = $propertyName;
} else {
$map = array($propertyName => $value);
}
$_new_map = array();
if ($node->hasAttribute("style")) $styleValue = $node->getAttribute("style");
if ($styleValue != "") $_new_map = $this->explodeStyle($styleValue);
foreach($map as $prop => $a) {
if ($a == "") {
unset($_new_map[$prop]);
} else {
$_new_map[$prop] = $a;
}
}

@$node->setAttribute("style", $this->implodeStyle($_new_map));
$this->attrEvents($propertyName, "style", $styleValue, $node);
} else {
$propValue = "";
if ($node->hasAttribute("style"))
{
$styleValue = $node->getAttribute("style");
$styleMap = $this->explodeStyle($styleValue);
$propValue = $styleMap[$propertyName];
}
return $propValue;
}
}
return (is_null($value) && ! is_array($propertyName))
? '' : $this;
}
private function explodeStyle($style) {
$map = array();
$arrStyle = explode(";", $style);
foreach ($arrStyle as $value) {
$prop = explode(":", $value);
$map[$prop[0]] = $prop[1];
}
return $map;
}
private function implodeStyle($map) {
$styleText = "";
foreach ($map as $prop => $value) {
if ($prop != "") $arrStyle[] = $prop . ":" . $value;
}
$styleText = implode(";", $arrStyle);
return $styleText;
}
/**
* @todo
*
*/
public function show(){
// TODO
public function show() {
$this->css('display', '');
return $this;
}
/**
* @todo
*
*/
public function hide(){
// TODO
public function hide() {
$this->css('display', 'none');
return $this;
}
/**
Expand Down