当前位置: 首页>>代码示例>>PHP>>正文


PHP files::putContent方法代码示例

本文整理汇总了PHP中files::putContent方法的典型用法代码示例。如果您正苦于以下问题:PHP files::putContent方法的具体用法?PHP files::putContent怎么用?PHP files::putContent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在files的用法示例。


在下文中一共展示了files::putContent方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: putContent

 function putContent($c)
 {
     return files::putContent($this->root . $this->base_path, $c);
 }
开发者ID:jewelhuq,项目名称:okatea,代码行数:4,代码来源:class.filemanager.php

示例2: switchStatus

 function switchStatus($p)
 {
     $xml_path = $this->location . $p . '/desc.xml';
     $p_info = $this->_getPluginInfo($xml_path);
     $xml = implode('', file($xml_path));
     $active = (int) (!$p_info['active']);
     $xml = preg_replace('|(<' . $this->type . '[^>]*?active=)"([^"]+)([^>]*>)|ms', '$1"' . $active . '$3', $xml);
     if (!files::putContent($xml_path, $xml)) {
         return false;
     }
     return true;
 }
开发者ID:YesWiki,项目名称:yeswiki-sandstorm,代码行数:12,代码来源:class.plugins.php

示例3: die

<?php

// index.php
// Administration de l'extension : initialisations (tables, fichier de configuration) , information etc. : toutes
// opérations réservées à l'administrateur technique de Wikini.
// Vérification de sécurité
if (!defined("TOOLS_MANAGER")) {
    die("acc&egrave;s direct interdit");
}
// Affichage au moyen de la méthode statique buffer::str :
buffer::str('Parametrage de l\'extension akismet ...' . '<br />');
# Liste des thèmes
$plugins_root = dirname(__FILE__) . '/../';
$plugins = new plugins($plugins_root);
$plugins->getPlugins(false);
$plugins_list = $plugins->getPluginsList();
$is_writable = is_writable($plugins_root);
if (!$is_writable) {
    buffer::str('<p>' . sprintf(__('The folder %s is not writable, please check its permissions.'), DC_ECRIRE . '/tools/') . '</p>');
} else {
    buffer::str('<form action="tools.php" method="post">' . '<p><label for="tool_url">' . __('Entrez votre clef Akismet') . ' :</label>' . form::field('akismet_key', 50, '', $akismet_key) . '</p>' . '<p><input type="submit" class="submit" value="' . __('Install') . '" />' . '<input type="hidden" name="p" value="akismet" /></p>' . '</form>');
}
if (isset($_POST['akismet_key'])) {
    $key_path = $plugins->location . $p . '/akismet.key.php';
    $content = "<?php\n" . "\$akismet_key='" . $_POST['akismet_key'] . "';\n" . "?>";
    if (!files::putContent($key_path, $content)) {
        buffer::str('Problème installation de la clef' . '<br />');
    } else {
        buffer::str('Clef installée !' . '<br />');
    }
}
开发者ID:BackupTheBerlios,项目名称:wikiplug,代码行数:31,代码来源:index.php


注:本文中的files::putContent方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。