PageRenderTime 42ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/user/views/user/message.php

https://github.com/yii-simon/yii-user-management
PHP | 10 lines | 7 code | 3 blank | 0 comment | 4 complexity | 9f97fa33b2f351c11e1f216a22cc5ce5 MD5 | raw file
  1. <?
  2. printf('<h2> %s </h2>', $title);
  3. printf('<p> %s </p>', $content);
  4. if (isset($partial) && is_array($partial) && $partial != array())
  5. foreach ($partial as $p)
  6. echo (isset($p['params'])) ? $this->renderPartial($p['view'], $p['params']) : $this->renderPartial($p['view']);
  7. ?>